$(document).ready(function(){
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	Cufon.replace('#menu a');



	/** Open link in new window **/
	$('.external-link-new-window').click(function(){
		window.open($(this).attr('href'));
		return false;
	});




	/* 	Product index hover */
	$('.productlist li').hover(function(){
		$(this).children('.producttitle').animate({bottom: '0px'});
	},function(){
		$(this).children('.producttitle').animate({bottom: '-35px'});
	});
	
		
});


/* Product click enlarge */
$(window).load(function() {
	$('body').nivoZoom({
		speed:500,
		zoomHoverOpacity:0.4,
		overlay:true,
		overlayColor:'#333',
		overlayOpacity:0.3,
		captionOpacity:0.6
	});

});

