$(document).ready(function() {
	$("a.thickbox, a[rel='lightbox']").fancybox({
		'hideOnContentClick': false,
		imageScale : true
	}); 
	$("a#box_ami").fancybox({
		frameWidth : 300,
		frameHeight : 200
	}); 
	if(document.all){
		$("a#box_fav").click(function(){
			window.external.AddFavorite(location.href, document.title);
		});
	}else{
		$("a#box_fav").fancybox({ 
			'hideOnContentClick': true,
			frameWidth : 400,
			frameHeight : 100			 
		});
	}
	$('#logo').hover(function(){$(this).stop().fadeTo(150,'0.75');},function(){$(this).stop().fadeTo(150,'1');});
	$("#a_video").fancybox({
            'hideOnContentClick': false,
            imageScale : true,
            frameWidth : 788,
            frameHeight : 450,
            'callbackOnClose': clearIframe
    });
	$('#slide li').hover(function(){$(this).children("div").stop(0,1).slideToggle();},
	function(){$(this).children("div").stop(0,1).slideToggle();});
}) ;
function clearIframe() {
    $("#fancy_content").load('empty.html');
};
