$(document).ready(function(){

	$('#cycle').cycle({
		fx: 'fade'
	});
	
	$("#brandsPanel").hide();
	$("#brandsButton").click(function () {
		$("#brandsPanel").slideToggle("fast");
    });
	
	
	$('#specials').flash({
		swf: '/templates/__custom/images/specials.swf',
		width: 175,
		height: 25,
		wmode: 'transparent',
		flashvars: {

		}
	});	
	
	$('#_lpChatBtn img').attr('src', '/templates/__custom/images/livechat.jpg');
	
	function equalHeight(group) {
		var tallest = 0;
		group.each(function() {
			var thisHeight = $(this).height();
			if(thisHeight > tallest) {
				tallest = thisHeight;
			}
		});
		group.height(tallest);
	}
	
	equalHeight($("#LayoutColumn1, #LayoutColumn2, #LayoutColumn3"));	
	equalHeight($("#Footer .Left, #Footer .Content, #Footer .Right"));	
	
});
