function hoverashit(holder,on,off) {
	$ja(holder).mouseenter(function () {$ja(this).css({'background-color':on});});
	$ja(holder).mouseleave(function () {$ja(this).css({'background-color':off});});
}


$ja(document).ready(function(){
							 
							 
							 
	$ja("a.mcdbox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'autoScale'	:	true,
		'centerOnScroll':	true,
		'hideOnOverlayClick'	:	true,
		'overlayOpacity'	:	0.9,
		'overlayColor'	:	'#e4e5e5',
		'overlayShow'	:	true,
		'showNavArrows' : true,
		'scrolling' : false
	});

	hoverashit('.hoverash','#e4e5e5','#ffffff');

});
