/* Javascript Document */

$(document).ready(function(){
	
	$(".toggle-container").hide();

	$("a.expand").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("a.expand").click(function(){
		$(this).next(".toggle-container").slideToggle("slow,");
	});
	$(".expand_all").toggle(function(){
		$(this).addClass("expanded"); 
		}, function () {
		$(this).removeClass("expanded");
	});
	$(".expand_all").click(function(){
		$(".toggle-container").slideToggle("slow,");
	});

});

/* 172 Expanding Banner */

$(document).ready(function(){
	
	$(".toggle-banner").show();

	$("a.expand").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	
	$("a.expand").click(function(){
		$(this).next(".toggle-banner").slideToggle("slow,");
	});
});

function autoShow(){
	$(".toggle-banner").slideToggle("slow");
}


/* 173 Expanding Banner */

$(document).ready(function(){

	setTimeout(function(){
		$(".expand-top").animate({height: "77px"}, 2000);}, 4000);

	$(".expand-top").hover(function(){
		$(this).animate({height: "183px"}, {queue:false, duration: 500});
		}, function(){ $(this).animate({height: "77px"}, {queue:false, duration: 500});});
});

