$(document).ready(function() {

$('div.rowList0:odd').addClass('even');
$('div.rowList0').hover(function() {
     $(this).addClass("litRow");
   },function(){
     $(this).removeClass("litRow");
   });

//popupwindow
var profiles =
{
	window510:
	{
		height:610,
		width:610,
		toolbar:0, // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
		scrollbars:1, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
		status:0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
		resizable:1, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
		center:1		
	}
};
$(function(){
	$(".popupwindow").popupwindow(profiles);
});

});
