var slide_img = new Array();
slide_img[0] = 'images/banner1.jpg';
slide_img[1] = 'images/banner2.jpg';
slide_img[2] = 'images/banner3.jpg';


var slide_text = new Array();
slide_text[0] = '<h3>East Midlands based IT support</h3><p>Planning to upgrade your IT infrastructure or increase its productivity? Invest some time with our experienced IT consultants.</p><p>We have fully qualified Microsoft Engineers available to assess all aspects of IT in your business. We can help you in everything from Disaster Recovery Planning to encryption of laptops and servers as well as sourcing hardware/software to meet your business requirements.</p><p><a href="managed-it-support.php">Have a look at our Support Packages ></a></p>';
slide_text[1] = '<h3>Desktop & Laptop Encryption</h3><p>Are you aware that if data of your clients or employees is left in ansecure manner it is fact breaching the Data Protection Act 1998? You could even be prosecuted for not taking the relevant steps to secure it properly.</p><p>With our secure encryption service, if your device is lost or stolen, you can be sure your data is protected.</p><p><a href="encryption-services.php">More information on our Encryption Services></a></p>';
slide_text[2] = '<h3>Disaster Recovery - Where do you start?</h3><p>Have you ever thought how your business would recover in the event of a major incident such as a fire or flood? Our Disaster Recovery Planners can work with you to cover against any incident and get you back on the road to recovey.</p><p>We will look into each and every system you have to establish what preventative measures can be taken to ensure your business continues to run smoothly.</p><p><a href="disaster-recovery.php">More information on Disaster Recovery></a></p>';

var current_slide = 0;
var num_slides = slide_img.length;
var animatestep = 1;

$(document).ready(function() {
	window.setInterval(function(){
		changeSlide(current_slide);
	}, 10000);
});

function changeSlide(slide_no){
	if(slide_no >= (num_slides-1)){
		current_slide = 0;
	}
	else{
		current_slide = slide_no+1;
	}
	
	if(animatestep == 1)
	{
		$('#slideimage').fadeOut('slow',function(){
			$('#slideimage').attr('src',slide_img[current_slide]);
			$('#slidetext_next').css("top","294px");
			$('#slidetext').animate({"top": "-=274px"},"slow");
			$('#slidetext_next').html(slide_text[current_slide]);
			$('#slidetext_next').animate({"top": "-=274px"},"slow");
		});
	
		$('#slideimage').fadeIn('slow',function(){
			// animation complete
		});
		
		animatestep = 2;
	}
	else
	{
		$('#slideimage').fadeOut('slow',function(){
			$('#slideimage').attr('src',slide_img[current_slide]);
			$('#slidetext').css("top","294px");
			$('#slidetext').html(slide_text[current_slide]);
			$('#slidetext_next').animate({"top": "-=274px"},"slow");
			$('#slidetext').animate({"top": "-=274px"},"slow");
		});
		
		$('#slideimage').fadeIn('slow',function(){
			// animation complete
		});
		
		animatestep = 1;
	}
}
