$(document).ready(function() {
	$("a[rel=facebox]").facebox({
		overlay: true
	});

	// CLICK TO CHANGE MAIN IMAGE
	$(".altimg").mouseover(function() {
		$(this).css("cursor","pointer");
	}).click(function() {
		$(".altimg").removeClass("altimgactive");
		$(this).addClass("altimgactive");

		// NEW INFOS
		newImgTitle = $(this).attr("title");
		newImgAlt   = $(this).attr("alt");
		newImgPath  = $(this).attr("src").replace(/prodthumbs/,"products");
		$("#imgmainlink").attr("href",$(this).attr("src").replace(/prodthumbs/,"prodhuge"));
		$("#imgmainlink2").attr("href",$(this).attr("src").replace(/prodthumbs/,"prodhuge"));

		$("#imgmain").fadeTo(100,0.01,function() {
			$("#imgmain").attr({
				"src": newImgPath,
				"alt": newImgAlt,
				"title": newImgTitle
			}).fadeTo(500,1);
		});
	});

});
