$(document).ready(function(){
	// sIFR activation
	if(typeof sIFR == "function"){
		// This is the preferred "named argument" syntax
			sIFR.replaceElement(named({sSelector:"#content h1", sFlashSrc:"js/microgrammadbolext.swf", sColor:"#000000", sLinkColor:"#000000", sBgColor:"#000000", sHoverColor:"#CCCCCC", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=left&offsetTop=0", sWmode:"transparent"}));
			sIFR.replaceElement(named({sSelector:"#content h2", sFlashSrc:"js/microgrammadbolext.swf", sColor:"#000000", sLinkColor:"#000000", sBgColor:"#000000", sHoverColor:"#CCCCCC", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=left&offsetTop=0", sWmode:"transparent"}));

		};
		
	// Choose Your Car tree list functionality
	$("#choose-your-car ul li ul li a").hide(); 
	$("#choose-your-car ul li ul").hide(); 
	$("#choose-your-car ul li a").removeClass('expanded');
	$("#choose-your-car>ul>li>a").click(function () { 
		if ($(this).parent().children("ul").children("li").children("a").is(":hidden")) {
			$(this).addClass('expanded');
			$(this).parent().children("ul").children("li").children("a").show();
			$(this).parent().children("ul").show();
		} else {
			$(this).removeClass('expanded');
			$(this).parent().children("ul").children("li").children("a").hide();
			$(this).parent().children("ul").hide();
		}
		return false;
	});
		
	// Open external links in new tab
	$("a.external").attr({ target: "_blank" });
	
	// Remove outlines from clicked links
	$("a").click(function() {
		$(this).blur();
	});
});
