$(document).ready(function(){
 	
 	///// FANCYBOX
 	
 	$("a.fancybox").fancybox({
 		'overlayOpacity'	:'0.6',
 		'overlayColor'		:'#000000',
 		'hideOnContentClick'	:'true',
 		'titlePosition'	: 'inside'
 	});
 	
 	///// NEWS ARCHIVE
	
	$("span.news_show").click(function(){
		$("div.news_hide").toggle(250);
		$(this).toggle(250);
	});
	
	///// SHOP HOVER
	
	$(".hover_image").css({ opacity:0});
	if($.browser.msie){
		$(".shop_item").hover(function(){
	 		$(".hover_image",this).css({ opacity:1});
	 	},function(){
	 		$(".hover_image",this).css({ opacity:0});
	 	});
	} else {
		$(".shop_item").hover(function(){
	 		$(".hover_image",this).stop().animate({ opacity:1}, 200);
	 	},function(){
	 		$(".hover_image",this).stop().animate({ opacity:0}, 200);
	 	});
 	}
	
});
