// this prevents the flashing of content that is hidden through javascript
$('head').append('<link href="/shared/css/noflicker.css" media="all" rel="stylesheet" type="text/css" />')

$(document).ready(function(){
	
	// accordion sidebar
	//$('.expandable').sfHover();
	$("dd:not(#active)").hide();
	
	$("dt a").click(function(){
		$(this).parent().next().siblings("dd:visible").slideUp("slow");
		$(this).parent().next().slideDown("slow");
		$(".current").removeClass("current");
		$(this).addClass("current");
		return false;
	});
	
	// toggle models on memory index
	$('#toggle_all_models h3 a').click(function(){
		$(this).parent().parent().children('ul').toggle();
	});

// rotate banner in header
	$('.banner').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '43px'
	});	
});
