$(document).ready(function(){
	$('#brands').jcarousel({
		auto: 1,
		wrap: "last"
	});
	$('#brands').css('visibility', 'visible');
	
	$("#hd-toggle").click(function(e) {
		e.preventDefault();
		$("#history-details").toggle();
	});
	
	//$("a.enlarge").fancybox();
	
	$("a.show-thumbs").click(function(e) {
		e.preventDefault();
		$("ol.content_brand_gridList").hide();
		$(this).siblings("ol.content_brand_gridList").show();
	});
	
	$("a.enlarge").fancybox({
		url: $(this).attr("href"),
		inline: true,
		innerHeight: 500,
		innerWidth: 500
	});
	
	/*ofs = $('#footer').offset();
	var h = $('#footer').height()
	bottom1 = ofs['top'] + h + 60 + 100;
	bottom2 = $(document).height();
	if (bottom2 > bottom1) {
		res = bottom2 - bottom1 - 4;
		newcode = '<img src="/images/site/t.gif" width="1" height="'+res+'">';
		$('#divider').html(newcode);
	}*/
});









