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