function mainmenu(){
$("ul#nav ul ").css({display: "none"}); // Opera Fix
$("ul#nav li").hover(function(){
$(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(400);
},function(){
$(this).find('ul:first').css({visibility: "hidden"});
});
}

var x = 1;

function changeTestimonial() {
	if(x == 1) {
		x = 2;
		$('.testimonial').hide();
		$('.testimonial-2').fadeIn(1000);
	} else if(x == 2) {
		x = 3;
		$('.testimonial').hide();
		$('.testimonial-3').fadeIn(1000);
	} else if(x == 3) {
		x = 4;
		$('.testimonial').hide();
		$('.testimonial-4').fadeIn(1000);
	} else if(x == 4) {
		x = 5;
		$('.testimonial').hide();
		$('.testimonial-5').fadeIn(1000);
	} else if(x == 5) {
		x = 6;
		$('.testimonial').hide();
		$('.testimonial-6').fadeIn(1000);
	} else if(x == 6) {
		x = 1;
		$('.testimonial').hide();
		$('.testimonial-1').fadeIn(1000);
	}
}

$(function() {

	mainmenu();
	$('ul#nav li:last').css({"border-right":"none"});

	setInterval("changeTestimonial()", 8000);

});
