jQuery(document).ready(function(){
	setTimeout(slideShow,300);
	
	$(".navItem").hover(
    function(){
        $(this).children("a").css("background-position","0px -28px");
        $(this).children("div.navSubmenu").show();
    },
    function(){
        $(this).children("a").css("background-position","0px 0px");
        $(this).children("div.navSubmenu").hide();
    });
		
});

function slideShow(){
    setTimeout("startSlideShow(0)",50);
}

function startSlideShow(index){

    var holder = jQuery(jQuery(".singleCell")[index]);
    if (holder.children(".testimonial").size()<2) return;
    if (holder.children(".testimonial:visible").length==3)
        holder.children(".testimonial").not(":last").hide();
	holder.children(".testimonial:visible").fadeOut(500);
    
    if (holder.children(".testimonial:visible").next().size()==0) 
       { holder.children('.testimonial:first').delay(250).fadeIn(2000); }
    else { holder.children('.testimonial:visible').next().delay(250).fadeIn(2000); }
    
	setTimeout("startSlideShow("+index+")",4500) 
}


