jQuery(document).ready(function() {
    jQuery('.product-item').hover(function() {
        jQuery(this).find('div.product-item-text').stop(true).animate({ opacity: '0' }, 0);
    }, function() {
        jQuery(this).find('div.product-item-text').stop(true).animate({ opacity: '1' }, 500);
    });

//    jQuery('.product-alpha').hover(function() {
//        jQuery(this).find('div.product-images-controls').stop(true).animate({ opacity: '1' }, 0);
//    }, function() {
//        jQuery(this).find('div.product-images-controls').stop(true).animate({ opacity: '0' }, 500);
//    });



    jQuery('#pagination span').hover(function() {
        jQuery(this).stop(true).animate({ backgroundColor: "#ff3300" }, 100);
    }, function() {
        jQuery(this).stop(true).animate({ backgroundColor: "#999999" }, 500);
    });

    jQuery(".input-search-text").click(function() {
        var InputVar = jQuery(".input-search-text").val();

        if (InputVar == "") {
            //jQuery("input#SearchForm_SearchForm_Search").val("");
            jQuery("#search-field").css("border-bottom-color", "#cccccc");
            //jQuery("#search-field").css("border-bottom-color","#cccccc");
        }
    });

});  
