
$(document).ready(function(){

    $("#fancyopen a").fancybox({
         'hideOnContentClick': true,
         'overlayShow': true
    });
    
$('#nav li a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 -200px)"}, 
			{duration:500})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0)"}, 
			{duration:500})
		})

});


