/* Topmenu */

jQuery.noConflict();

jQuery(document).ready(function() { 
  jQuery("ul.sf-menu").superfish(); 
}); 

/* Tooltip */
jQuery(function() {
	jQuery(".partner_link a").tooltip({
	track: true,
	//delay: 0,
	showURL: false,
	fixPNG: true,
	//showBody: " - ",
	extraClass: "fancy",
	positionBottom: true,
	top: 5,
	left: -20
	}); 
});

/* Product Info Page */

function setDate(date_id)
{
	jQuery("#id_1").val(date_id);
	jQuery("#cart_quantity").submit();
}


/*Main Product Image Zoom */
jQuery(function() {
	jQuery('a.lightbox').lightBox(); // Select all links with lightbox class
});


/*Images Zoom */
jQuery(function() {
	jQuery('.moreProductImages a').lightBox({fixedNavigation:true});
});



