$(document).ready(function() {
	$("a.thickbox, a[rel='lightbox']").fancybox({
		'hideOnContentClick': false,
		imageScale : true
	}); 
	
	$("a#box_ami").fancybox({
		frameWidth : 400,
		frameHeight : 350
	}); 
	
	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, .slideshow div a').hover(function() { 
		$(this).stop().animate({'opacity':'0.6'}, 200);
	}, function() {
		$(this).stop().animate({'opacity':'1'}, 500);
	});
});
