$(document).ready(function() {

	//open any anchor with a rel="" in a new window
	if($("a[rel]")){
		$("a[rel]").click(function() {
			/*newWindow = window.open(this, "newWin", "toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=750,height=550")*/
			newWindow = window.open(this, "newWin", "width=750,height=550,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes")
			newWindow.focus();
			if($(this).attr('title').substr(-13) != '')
			{
			  s.products = $(this).attr('title').substr(-13);
			  s.events = 'prodView';
			}
			return false; //stop link from working normally
		});
	}

	if($("#success")){ $("#success").fadeOut(6000); }
	//if($(".round")){ $(".round").corner("20px"); }
	
	//load product detial via ajax into the #show div
	if($("#show")){
		var item = $("#show").attr("class");
		var data = $("#show").load("/servlet/ItemDetailServlet", { region: "9", imprint: "860", titleCode: "TP909", type: "3", id: item, banner: "false"}, function(response, textStatus, XML){ if(textStatus == 'error'){ $("#show").html("<strong>There is currently no data for this title.</strong>"); } $("#loader").remove(); } );
	}

});
