jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery('.highlighted-product:first').addClass('first');
	jQuery('.highlighted-product:last').addClass('last')
	
	jQuery('.highlighted-product').hover(function(){
		hasImg = jQuery(this).children().find('.popupImage img') 
		if(hasImg.length > 0){
			jQuery(this).find('.productPopup').css('background','transparent url('+hasImg.attr('src')+') no-repeat 0 0');
		}	
	});

	jQuery(".producturl").click(function (e){ 
		e.preventDefault();
	});
});