$(document).ready(function() 
{
	// we like the fancy box
	$("a.fancybox").fancybox();
	

	// rollover image support
	$("img.rollover").hover(function() {
		var currentImg = $(this).attr("src");
		$(this).attr("src",$(this).attr("name"));
		$(this).attr("name",currentImg);
	},function() {
		var currentImg = $(this).attr("src");
		$(this).attr("src",$(this).attr("name"));
		$(this).attr("name",currentImg);
	});
	
	// shop: sub product selection
	$("a#subproductadd").click(function(event) {
		if ( $("select#subproduct option:selected").hasClass("outofstock") ) {
			$("div#subproductmsg").show();			
		}
		else {
			var value = $("select#subproduct").val();
			if ( value.length>0 ) {
				location.href = "shop.php?" + value + "&action=add";
			}
		}
	});
	
	// shop: support change of currency
	$("select#currency").change(function(event) {
		location.href="shop.php?productId=" + $.url.param("productId") 
			+ "&cur=" + $("select#currency").val();
	});
});

///////////////////////////////////////////////////////////////