// JavaScript Document
$(function() {
	$(".sf-menu").superfish({autoArrows:false});
	$("#textContent img:not('.product_table img'):not('.nozoom')").each(function(i) {
		var newImg = unescape($(this).attr('src').replace('small/',''));
		newImg = newImg.replace(/^images\//i, "");
		$(this).attr('border','0').wrap('<a class="image_link" href="images/displayImage.php?h=600&src='+escape(newImg)+'" target="_blank"></a>');
	});
	
	$('a.image_link').lightBox();
});