// JavaScript Document

//common functions
function tell_a_friend(){
	
	window.open('tell_friend/tell_friend.php', 'Tell', 'width=550,height=550,scrollbars=yes,resizable=no');
	
}



//Freshmenu javascript
function IEHoverPseudo() {

	var navItems = document.getElementById("primary-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}
window.onload = IEHoverPseudo;