$(document).ready( function(){

	//hide the brand list to start
	$(".blue_header > ul").hide();

	//hide or show brand depending upon ul state
	$(".blue_header > a").click(function(){		
		var theul = $(this).parent().find('ul');
		if($(theul).css('display') == 'none'){
			$(theul).slideDown();
		}else{
			$(theul).slideUp();
		}
	});

	$("#home_promo_box").innerfade({
		speed	: 'slow',
		timeout	: 4000,
		type	: 'sequence',
		containerheight: '165px'
	});
});
