$(document).ready( 
	function(){ 
		//Messages on homepage
 		$('#banner').innerfade({
 			animationtype: 'fade',
 			speed: 1500,
 			timeout: 11000,
 			type: 'sequence',
 			containerheight: '250px'
 		});
		
		//testimonials on homepage
 		$('#testimonials_home').innerfade({
 			animationtype: 'fade',
 			speed: 1500,
 			timeout: 11000,
 			type: 'random',
 			containerheight: '420px'
 		});	

		//testimonials on secondary pages 
 		$('#testimonials').innerfade({
 			animationtype: 'fade',
 			speed: 1500,
 			timeout: 11000,
 			type: 'random',
 			containerheight: '180px'
 		});	

		//Dropdown menu script for IE6
 		$("ul.dropdown li").hover(function(){
 		  $(this).addClass("hover");
 		  $('> .dir',this).addClass("open");
 		  $('ul:first',this).css('visibility', 'visible');
 		},function(){
 		  $(this).removeClass("hover");
 		  $('.open',this).removeClass("open");
 		  $('ul:first',this).css('visibility', 'hidden');
 		});	
 } );
