$(document).ready(function() {
	//Speed Of The Slideshow
	//var speed = 5000;
			
	//Set Heights And Widths Of All Elements
	$('#con_hm_back1, #con_hm_back li, #con_hm_text1, #con_hm_text li').width($('#con_hm').width());	
	$('#con_hm_back').width($('#con_hm').width() * $('#con_hm_back li').length);
	$('#con_hm_back1, #con_hm_back li, #con_hm_text1, #con_hm_text li').height($('#con_hm').height());
				
	//Start Timer
	var run = setInterval('headerslider(0)', speed);	
			
	$('#con_hm_back li:first, #con_hm_text li:first').addClass('selected');
			
	//Mouse Over Header Stops The Slider, Mouse Out Start Its Again
	$('#con_hm').hover(
		function() {
			clearInterval(run);
		}, 
		function() {
			run = setInterval('headerslider(0)', speed);	
		}
	); 
});
				
function headerslider(PreviousOrNext) {
	
	//Current Slide Items Or The First Slide
	var current_image = $('#con_hm_back li.selected').length ? $('#con_hm_back li.selected') : $('#con_hm_back li:first');
	var current_text = $('#con_hm_text li.selected').length ? $('#con_hm_text li.selected') : $('#con_hm_text li:first');
			
	//Previous Slide
	if (PreviousOrNext) {
		var next_image = (current_image.prev().length) ? current_image.prev() : $('#con_hm_back li:last');
		var next_text = (current_text.prev().length) ? current_text.prev() : $('#con_hm_text li:last');
	//Next Slide
	} else {
		var next_image = (current_image.next().length) ? current_image.next() : $('#con_hm_back li:first');
		var next_text = (current_text.next().length) ? current_text.next() : $('#con_hm_text li:first');
	}
				
	//Delete Class: Selected
	$('#con_hm_text li, #con_hm_back li').removeClass('selected');
				
	//Add Class: Selected To The New Slide Items
	next_image.addClass('selected');
	next_text.addClass('selected');
				
	//Show The New Slide
	$('#con_hm_back1').scrollTo(next_image, slidespeedi);		
	$('#con_hm_text1').scrollTo(next_text, slidespeedt);					
		
}
				

