var $j = jQuery.noConflict();
function change1() {
	$j("#front-slideshow ul li:nth-child(2)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(3)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(4)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(5)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(1)").fadeIn(1200);
	setTimeout(change2, 5000)
}
function change2() {
	$j("#front-slideshow ul li:nth-child(1)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(2)").fadeIn(1200);
	setTimeout(change3, 5000)
}
function change3() {
	$j("#front-slideshow ul li:nth-child(2)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(3)").fadeIn(1200);
	setTimeout(change4, 5000)
}
function change4() {
	$j("#front-slideshow ul li:nth-child(3)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(4)").fadeIn(1200);
	setTimeout(change5, 5000)
}
function change5() {
	$j("#front-slideshow ul li:nth-child(4)").fadeOut(1200);
	$j("#front-slideshow ul li:nth-child(5)").fadeIn(1200);
	setTimeout(change1, 5000)
}
$j(document).ready(function(){ 
    setTimeout(change1, 5000);
		$j("div.mmf-response-output").animate({opacity: 1.0}, 5000).fadeOut('slow');
}); 