function changediv(pass) {
		document.getElementById("photo-div").style.backgroundImage = "url("+ pass+")";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

/** Super jQuery Goodness */
$(document).ready(function() {

	addHoverState('.search-result-rows tr');
/*	addHoverState('td.example');	 #id or .class and then <element>*/
});

function addHoverState(selector) {
	$(selector).bind("mouseenter",function(){
		$(this).addClass("hover");
	}).bind("mouseleave",function(){
		$(this).removeClass("hover");
	});
}

$(document).ready(
 function(){
  $('#news').innerfade({
	 animationtype: 'slide', 
	 speed: 750, 
	 timeout: 2000, 
	 type: 'random', 
	 containerheight: '1em'
	  });

 $('#slideshow').innerfade({ 
 speed: 'slow', 
 timeout: 8000, 
 type: 'sequence', 
 containerheight: '686px'
 }); 

} ); 