function crystalrock() {
	// add rounded corners and dividers to navigation
	$("div.nav").prepend("<div class='nav-left'></div><div class='nav-right'></div>");
	$("div.nav ul li.primary").each(function(){
		$(this).after("<li class='divider'>hi</li>");
	});
	
	// calc width of each nav item
	var howWide = "";
	var howFar = "";
	$("div.nav ul li.primary").each(function(){
		howWide = $(this).width() -4 ;
		howFar = $(this).width() -20 ;
		$(this).children("ul").width(howWide);
		$(this).children("ul").children("li").children("ul").css({left:howFar});
	});
	
	// main nav controls 
	$("div.nav ul li").hover(
		function () {
			$(this).addClass("active");
			$(this).children("ul").show();
		}, 
		function () {
			$(this).removeClass("active");
			$(this).children("ul").hide();
		}
    );
	
	// add rounded edges to flash
	$("div.flash").prepend("<div class='topleft'></div><div class='topright'></div><div class='bottomright'></div><div class='bottomleft'></div>");
	
	// display callouts
	$("div.internal div.callouts a#"+callout1).addClass("callout-1");
	$("div.internal div.callouts a#"+callout2).addClass("callout-2");
	$("div.internal div.callouts a#"+callout3).addClass("callout-3");
	$("div.internal div.callouts a#"+callout4).addClass("callout-4");
	
	// accordion controls
	$("div.acc ul li#"+whichSection).children("ul").show();

	$("div.acc ul li span").click(function(){
		$(this).parent().siblings("li").children("ul").hide();
		$(this).siblings("ul").show();
	});
	
	// product highlights
	$("div.product-grid div.product a").hover(
		function () { $(this).parent("div.product").addClass("active"); }, 
		function () { $(this).parent("div.product").removeClass("active"); }
    );
	
	// product hide/reveal specs 
	$("div.products div.product div.product-content a.specs").click(function(){
		$(this).parent("p").siblings("div.product-specs").toggle();
	});
	
	// faq 
	$("div.question").click(function(){
		$(this).next("div.answer").toggle();
	});
	
	// footer controls
	$("div.footer ul li.footer").css({display:"inline"});
}