$(function() {

	//--- testimonials
	var randomNum = Math.floor(Math.random()*($("#random_testimonials div").length));
	$("#random_testimonials div:eq("+randomNum+")").show();
	
	//--- show random quote on the footer section 1 --- //
	$('.alrNoAnimation').hide();
				
	//---  Show/Hide service areas
	
	$(".cities").hide();
	
	$(".county").click(function() {
	    $(this).next(".cities").slideToggle('fast');
		$(this).blur();
         return false;
	})

	$('#slideshow').advListRotator({
		effect:'slice',
		autoStart:true,
		rotationInterval:3000,
		effectTimer:1000,
		effectOptions: {sliceDirection:'bottom', sliceCount:20, sliceReverse:false, sliceSpeed:100, easing:'easeOutCubic'}
	});
	
	//-----		Promo Selections
	//$(".selection").hide();
	
	$(".selectionLink").click(function() {
	    $(this).next(".selection").slideToggle('slow');
		$(this).blur();
         return false;
	})
	
});
