$(document).ready(function() {

	var changetime = 5000; // In miliseconds (1 second = 1000 milisecond)
	
	
	
	/* ----------------------------------------------- */
	/* Setting up the Image Scroller for the Home page */
	/* ----------------------------------------------- */
			
	var next = 0;
	
	function scroll(index) {
	
		clearInterval(activate_interval);
	
		next = index;
	
		if (next >= $('div.scroller ul').children().size()) next = 0;
		
		$('div.scroller ul li.active').fadeOut('normal', function() {
			$(this).attr('class', '');
			$('div.scroller ul li').eq(next).fadeIn('normal', function() {
				$(this).addClass('active');
			});
		});
	
		next++;
	
		if (next >= $('div.scroller ul').children().size()) next = 0;
		
		activate_interval = setInterval(function() { scroll(next); }, changetime);
		
	}
	
	activate_interval = setInterval(function() { scroll(next); }, changetime);
	
	
	
	/* -------------------------------------------------------------- */
	/* Adding the hover effect on the Image Scroller on the Home page */
	/* -------------------------------------------------------------- */
	
	$('div.scroller ul li').mouseover(function() {
		$(this).children('div.desc').stop().animate({'bottom': 0}, 300);
		clearInterval(activate_interval);
	}).mouseout(function() {
		$(this).children('div.desc').stop().animate({'bottom': '-50px'}, 300);
		activate_interval = setInterval(function() { scroll(next); }, changetime);
	});
	
	
	
	
	
	
	
});
