jQuery(document).ready(function() {
	$(".slideShow").show();
	$(".slideShow").cycle();

	$(".slideShow2").show();
$('.slideShow2').cycle({ 
    fx:    'fade', 
    speed:  300 
 });
	$(".slideShow3").show();
	$(".slideShow3").cycle();


	$(".hover img").hover(
		 function()
		 {
		  this.src = this.src.replace("_off","_on");
	
		 },
		 function()
		 {
		  this.src = this.src.replace("_on","_off");
		 
		 }
	);
});