 $(document).ready(function(){ 
	//$(document).pngFix();
	var newCss = "css/pinkpanda.css";
	var url = document.referrer;
	var cssToSwitch = $("link[href='css/replaceme.css']");
	if(url.indexOf("pinkpandagifts") >= 0)  {
		newCss = "css/pinkpanda.css";
		document.title = "Pink Panda Gifts - Checkout";
	} else {
		newCss = "css/throwmeover.css";
		document.title = "Throw me over - Checkout";
	}
	if(cssToSwitch) {		
		cssToSwitch.attr("href",newCss);
	}
	
});
