$(document).ready(function(){
/////////////////////////////
$('#projects tr:odd').css('background-color','#FFFFCC')
$('#projects tr:odd').css('padding-top','20px;')
//////////////////
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
});

$("a.popup_img").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: true,
				'transitionIn'		: 'fade',
'transitionOut'		: 'fade',
'overlayShow':false
			});
			
		$("a.popup_remote").fancybox({
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: true,
		'transitionIn'		: 'fade',
'transitionOut'		: 'fade',
				'type'				: 'iframe',
				'overlayShow':false
			});
/////////////////////////////
})
