﻿$(document).ready(function () {
	$(".hover").hover(function () {
		var src = $(this).attr("src");
		var str = src.replace("_off", "_on");
		$(this).attr("src", str);
	}, function () {
		var src = $(this).attr("src");
		var str = src.replace("_on", "_off");
		$(this).attr("src", str);
	});

	var randomnumber=Math.floor(Math.random()*5)
	var src = $(".banner").attr("src");
	var str = src.replace("_x.png", "_" + randomnumber + ".jpg");
	$(".banner").attr("src", str);
   
	$('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 4500
	});

	$('.slideshow2').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 2000
	});


});
