function base(){
	$("div.wrapper").prepend("<div class='shadow-left'></div><div class='shadow-right'></div>");
	$("div.wrapper").prepend("<div class='bottomright'></div>");
	$("div.header div.nav").prepend("<div class='topright'></div><div class='bottomleft'></div>");
	$("div.callout").prepend("<div class='bottomleft'></div><div class='topright'></div>");
	$("a.arrow").append("&nbsp;&raquo;");
	$("a.back").prepend("&laquo;&nbsp;");
	$("div.internal-express div.subnav div.express").show();	
	
	// bottles listing
	$("div#subnav-products ul li a").click(function(){
		$("div.bottles").hide();
		$("div#"+this.id+"-bottles-hr").show();
		$("div#"+this.id+"-bottles").slideDown(400);
	});
	
	// distributor listing
	$("div.distributor tr:odd").addClass("odd");
	$("div.distributor tr:even").addClass("even");
	$("div.distributor tr").hover(
		function () { $(this).addClass("active"); }, 
		function () { $(this).removeClass("active"); }
    );

	// product listing
	$("table.product tr").each(function(){
		if ( $(this).hasClass("express") == false ){
			$("table.product tr:odd").addClass("odd");
			$("table.product tr:even").addClass("even");
			$("table.product tr").hover(
				function () { $(this).addClass("active"); }, 
				function () { $(this).removeClass("active"); }
			);
		}
	});

}

function innerfade(){
	$("div#innerfade").innerfade({ speed: 750, timeout: 7500, type: 'random', containerheight: '325px' });
	$("div.flash div#innerfade").show();
}
