$(document).ready(function() {
	
	$("ul.topnav>li").hover(hoverOn,hoverOff);	

	
	// clear inputs
	$("input[type=text]").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$("ul.topnav li ul li a, ul.nav li a").prepend('<span class="carot">&gt; </span>');

	$("ul.nav li.on a .carot").remove();
	$("ul.nav li.nav-donate a .carot").remove();
	$("ul.nav li li a .carot").remove();

	if (navigator.appVersion.indexOf("Win")!=-1) {
		$("body").addClass('win');	
	};
});
	
	/* hover states */
	function hoverOn(){
		$(this).addClass("active");
	}
	function hoverOff(){
		$(this).removeClass("active");
	}
