jQuery( document ).ready( function (){

    jQuery( '.catalog-category-view .col-left' ).scrollFollow({
    		speed: 300,
    		offset: 20
    });
    
	jQuery(".catalog-category-view .product-image").hover
	(
  		function () {
    		img = jQuery(this).children(".quickView").attr("src");
    		img2 = jQuery(this).children(".img").attr("src");
    		if(img)
    		{
    			jQuery(this).children(".img").attr("src", img);
    		}
  		},
  		function () {
    			jQuery(this).children(".img").attr("src", img2);
  		}
	);
    

	// show the button in onestepcheckout
	jQuery('#onestepcheckout-place-order').show();
});

