// Add onload function calls to this function as needed.
function inti(){
	/* ADD ONLOAD PAGE FUNCTIONS HERE */
	// Addes Print functions
	assignPrintButtons();
	// Assigns the functionality to the Profile Update AJAX popup
	setAjaxOverlayEmailToFriend();
	// Assigns show event to a ANCHOR
	setAjaxOverlayLink('emailtofriend_link',emailtofriendShow);
	// Create the Fader Object and pass the list to the object
	var myPopup = new PopUpWindow();
	myPopup.setClassName('productpopup');
	myPopup.setWidth(350);
	myPopup.setHeight(450);
	myPopup.inti();
}

YAHOO.util.Event.addListener(window, "load", inti);
