$(document).ready(function(){ 
	//Sitespecific javascript here
	//Searchbox clear and fill
	//function input_values()
	//{	
	//	var inputBox = $('#newsletter input, #search input');
	
	//	
	//	inputBox.focus(function(){
	//		if ($(this).val() != "") {
	//			
	//			var theValue = $(this).val();
	//			$(this).attr('temp', theValue)
	//			$(this).val('');
	//		};
	//	
	//	});
	//	inputBox.blur(function(){
	//		if ($(this).val() == "") {
	//			var theValue = $(this).attr('temp');
	//			$(this).val(theValue);
	//		};
	//		
	//	});
	//}
	//input_values();
	
	//Even and odd rows in tables
	/* if Environment is NOT Editor */
		$("table tr").mouseover(function() {
			$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");
		});
		$("table tr:nth-child(even), table tr td:nth-child(even)").addClass("even");
		$("table tr:nth-child(odd), table tr td:nth-child(odd)").addClass("odd");
		$("table tr:first-child").removeClass('even').addClass("th");
		$('table tr td:first').addClass('first');
		$('table tr td:last').addClass('last');

	
	



});
