//var DisplayInterval = 5;
//var banTxtShow = new Array(6);
//banTxtShow[0]="a domain name?";
//banTxtShow[1]="a tagline?";
//banTxtShow[2]="Viral Traffic?";
//banTxtShow[3]="a Video?";
//banTxtShow[4]="Usability Testing?";
//banTxtShow[5]="Website Testing?";
//banTxtShow[6]="SEO Advice?";
//
//var DisplayInterval = DisplayInterval * 1000;
//var NumberOfBan = banTxtShow.length;
//var count = 0;
//
//function banTextRotate()
//{
//    TimerObject = setTimeout("banChangetxt()", DisplayInterval);
//    document.getElementById("changeBan").innerHTML = banTxtShow[count];
//}
//
//function banChangetxt() 
//{
//    count = count + 1;
//    if (count == NumberOfBan)
//    count = 0;
//    
//    document.getElementById("changeBan").innerHTML = banTxtShow[count];
//    TimerObject = setTimeout("banChangetxt()", DisplayInterval);
//	
//}




$(document).ready(function(){
	
	
	function show(id){
		$('.text').hide();	
		$(id).show();
		event.preventdefault();
	}
	function def(){
		$('.text').hide();	
		$('.default').show();	
		event.preventdefault()
	}
	
	
	$('.company').hover(function(event){
		show('.ban1');		
	},
	function(event){
		def();
	}
	);
	
	$('.tagline').hover(function(event){
		show('.ban2');		
	},
	function(event){
		def();
	}
	);
	
	$('.article').hover(function(event){
		show('.ban3');		
	},
	function(event){
		def();
	}
	);
	
	$('.marketing').hover(function(event){
		show('.ban4');		
	},
	function(event){
		def();
	}
	);
	$('.viral').hover(function(event){
		show('.ban5');		
	},
	function(event){
		def();
	}
	);
	
	$('.testing').hover(function(event){
		show('.ban6');		
	},
	function(event){
		def();
	}
	);
});