$(document).ready(function(){

//HOMEPAGE BANNER ROTATOR
  $('.slider').innerfade({ 
		speed: 700, 
		timeout: 3000, 
		type: 'sequence', 
		containerheight: '427px'
  });
/*TAGLINES ROTATOR
  $('#tagline').innerfade({ 
		speed: 700, 
		timeout: 3000, 
		type: 'sequence', 
		containerheight: '60px'
  });*/
  
//TAGLINES APPEARANCE
  $('#tagline li').hide();
  $('#tagline li.tagline1').show();
  	setTimeout(function(){
		$('#tagline li.tagline2').fadeIn();
	},3000);
/*
  $('#tagline li').hide();
  $('#tagline li.tagline1').show();
  	setTimeout(function(){
		$('#tagline li.tagline1').fadeOut(500,function(){
			$('#tagline li.tagline2').fadeIn();
		});
	
	},3000);
*/

});//END JQUERY FUNCTIONS


