/*
	Home JS
	Copyright (c) 2011 by SPOILED MILK
	http://www.spoiledmilk.dk
*/
	
$(document).ready(function() {

	//cufon
   	Cufon.replace('.cufon', {hover: true});
    	
	// product icons
	$('.product_cell .image .a').css({ opacity: 0.65 });
	$('.product_cell .image .b').css({ opacity: 0 });
	$('.product_cell .text').css({ opacity: 0 });
	
	$('.product_cell .image').hover(
		function() { 
    		$(this).find('.a').stop().animate({"opacity": 0});
    		$(this).find('.b').stop().animate({"opacity": 1}); 
    		$(this).parent().find('.text').stop().animate({"opacity": 1}); 
		},function() { 
    		$(this).find('.b').stop().animate({"opacity": 0});
    		$(this).find('.a').stop().animate({"opacity": 0.65}); 
    		$(this).parent().find('.text').stop().animate({"opacity": 0});
	});
	
   	// set cookies
    $('.image').live('click', function() {
  		$.cookie('ishopshape', '');
	});

});
