$(function(){
	$(window).load(function(){
		$('body').append('<img src="/images/home/home2.jpg" style="display:none"><img src="/images/home/home3.jpg" style="display:none"><img src="/images/home/home4.jpg" style="display:none">');
	});
	
	
	var active = 1,
		$content = $('#content'),
		rotators = $('.rotator'),
		buttons = $('.buttons a'),
		slideTimer = {},
		timeToSwitch = 6000;
		
		function changeIt(which){
			var images = which+1;
			var newBg = 'url(/images/home/home'+images+'.jpg)';
		
			$content.css('background-image', newBg);
			buttons.eq(which).addClass('current').siblings().removeClass('current');
			rotators.removeClass('activeRotator');
			rotators.eq(which).addClass('activeRotator');
		}
		
		function rotator(){
			slideTimer = $.timer(timeToSwitch, function(){
				if(active == 4){
					changeIt(0);
					active = 1;
				}else{
					changeIt(active);
					active ++;
					rotator();
				}
			});
		}
		
		rotator();
		
		
	
		buttons.click(function(e){
			e.preventDefault();
			$.clearTimer(slideTimer);
			var which = $(this).prevAll().length;
			changeIt(which);
		});
});
