$(document).ready(function(){

    /*
    * Show and hide the porduct popout
    */
    $(".product_rollover").hoverIntent(showPopout, hidePopout);

    function showPopout(e){
        $(e.currentTarget).siblings(".product_popout").fadeIn("slow");
	$(this).parent().css({'zIndex':'5'});
        $('select').hide();
    };

    function hidePopout(){
        //Do nothing
    };

    
    $(".product_popout").mouseleave(function(){
        $(this).fadeOut("fast", function(){
	   	$(this).parent().css({'zIndex':'0'}) 
	});
        $('select').show();
    });

    if($('.popout_basket_butt').length != 0) {
    	$('.popout_basket_butt').show();
    }
    
    //Moved to Common.js as used in more than 1 location

});



