  var $j = jQuery.noConflict();
$j(document).ready(function() {
 $j('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$j('#expobanner').cycle({
		fx: 'turnDown',
		cleartypeNoBg: true
	});	

$j(".rollover").hover(
	function(){
		if($j(this).attr("src").indexOf("-over") == -1) {
			var newSrc = $j(this).attr("src").replace(".png","-over.png#hover");
			$j(this).attr("src",newSrc);
		}
	},
	function(){
		if($j(this).attr("src").indexOf("-over.png#hover") != -1) {
			var oldSrc = $j(this).attr("src").replace("-over.png#hover",".png");
			$j(this).attr("src",oldSrc);
		}
	}
);
   
});
