$(document).ready(function() {
	$('#logo,.photo').hover(
		function(){
			$(this).stop(1,0).fadeTo(400,'0.8');
		},
		function(){
			$(this).stop(1,0).fadeTo(400,'1');
		}
	)
	$("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			 
		});
	}
});
