$('div#slides').cycle({
	speed: 1,
	type: 'sequence',
	pause: 1, 
	timeout: 15000,
	fx:     'scrollDown', 
	speed:  'slow', 
	pauseOnPagerHover: 1, 
	pager:  'div#nav-slide',
	before: leaveFrame
}); 
$(document).ready(function(){ 
	$('div#footer-top ul li:last').addClass("last");	
	$('div.search-result-item:first').addClass("first");	
	$('div.search-result-item:last').addClass("last");	
	$('div.content-box:first').addClass("first");	
	$('div.content-box:last').addClass("last");	

});
function leaveFrame(inFrame,outFrame,options) { 
	if ($(outFrame).attr("id") == 'slide-1') {
		$("#client-quote1").show();
		$("#client-quote2").hide();
		$("#client-quote3").hide();
		$("#client-quote4").hide();
		$("#client-quote5").hide();
		$("#client-quote6").hide();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-2') {
		$("#client-quote1").hide();
		$("#client-quote2").show();
		$("#client-quote3").hide();
		$("#client-quote4").hide();
		$("#client-quote5").hide();
		$("#client-quote6").hide();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-3') {
		$("#client-quote1").hide();
		$("#client-quote2").hide();
		$("#client-quote3").show();
		$("#client-quote4").hide();
		$("#client-quote5").hide();
		$("#client-quote6").hide();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-4') {
		$("#client-quote1").hide();
		$("#client-quote2").hide();
		$("#client-quote3").hide();
		$("#client-quote4").show();
		$("#client-quote5").hide();
		$("#client-quote6").hide();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-5') {
		$("#client-quote1").hide();
		$("#client-quote2").hide();
		$("#client-quote3").hide();
		$("#client-quote4").hide();
		$("#client-quote5").show();
		$("#client-quote6").hide();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-6') {
		$("#client-quote1").hide();
		$("#client-quote2").hide();
		$("#client-quote3").hide();
		$("#client-quote4").hide();
		$("#client-quote5").hide();
		$("#client-quote6").show();
		$("#client-quote7").hide();
	}
	if ($(outFrame).attr("id") == 'slide-7') {
		$("#client-quote1").hide();
		$("#client-quote2").hide();
		$("#client-quote3").hide();
		$("#client-quote4").hide();
		$("#client-quote5").hide();
		$("#client-quote6").hide();
		$("#client-quote7").show();
	}
}

$(document).ready(function(){ 
	$('div.sidebar-box:last').addClass("last-box");	
});