$(document).ready(function(){

	$("#header ul li").hover(function(){
		$("a", this).stop().animate({top:"-14px"},{queue:false,duration:200});
	}, function() {
		$("a", this).stop().animate({top:"0px"},{queue:false,duration:200});
	});

	
	$("a.iframe").fancybox({
			'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity' : 0.8,
		'overlayColor' : '#000000',
		'scrolling' : 'auto',
		'width' : 850,
		'height' : 400
	});
});
