$(document).ready(function(){
$(".product_container").hover(function() {
$(this).find(".product_hidden").stop()
.animate({top: "0"}, "fast")
.css("display","block");

$(this).find(".n_price").animate({
	left: "-100"
  }, 500, function() {
    // Animation complete.
});

$(this).find(".s_price").animate({
	left: "-100"
  }, 500, function() {
    // Animation complete.
});


}, function() {
$(this).find(".product_hidden").stop()
.animate({top: "260"}, "medium");


$(this).find(".n_price").animate({
	left: "10"
  }, 500, function() {
    // Animation complete.
});

$(this).find(".s_price").animate({
	left: "10"
  }, 500, function() {
    // Animation complete.
});


});

/*-
/* IMAGE HOVER
/*-*/
jQuery(function() {

jQuery("#product_top img").hover(function () {
jQuery(this).stop().animate({ opacity: 0.5 }, "medium"); },
function () {
jQuery(this).stop().animate({ opacity: 1.0 }, "slow");
});
});



jQuery(function() {
jQuery("#column_left ul li a").hover(function () {
jQuery(this).stop().animate({ left: "5" }, "fast"); },
function () {
jQuery(this).stop().animate({ left: "0" }, "medium");
});
});






$(".box-product > div").hover(
function () {
$(this).siblings().stop().animate({
opacity: .6
}, 500)
},
function () {
$(this).siblings().stop().animate({
opacity: 1
}, 500)
}
);
$(".product-grid > div").hover(
function () {
$(this).siblings().stop().animate({
opacity: .6
}, 500)
},
function () {
$(this).siblings().stop().animate({
opacity: 1
}, 500)
}
);
$(".box-category > ul > li > a").hover(function () {
$(this).stop().animate({ left: "5" }, "fast"); },
function () {
$(this).stop().animate({ left: "0" }, "medium");
});


	// Animation for the languages and currency dropdown
$('.switcher').hover(function() {
$(this).find('.option').stop(true, true).slideDown(300);
},function() {
$(this).find('.option').stop(true, true).slideUp(150);
}); 


 
Cufon.replace('h1, h2, #customHome h2, h3, h4, h5, .category_name, #content h1, .heading, #top-menu a, #learn_more, .n_price span, .s_price span , .product_hidden .product_name, .product_hidden .product_model, .product_hidden .n_price_h, .button_add, .button_add:visited, .button_add, .button_add:visited , .box .top, .n_price_prod, .box-product .name a, #menu > ul > li > a, .box-heading, .product-info .price-tax, .product-info .price '); // Requires a selector engine for IE 6-7, see above


});
