function sheaffer(){
	// all pages: if IE6, remove display:block from left hand navigation
	if($.browser.msie && $.browser.version=="6.0"){
		$("div.navigation ul").addClass("ie6");
	}
	
	// all pages: add shadows
	$("body").prepend("<div class='shadow-body'></div>");
	$("div.header").prepend("<div class='shadow-header'></div>");
	

	
	// homepage: add arrows to and activate entire callouts
	$("div.callout h2").append("<img src='/images/arrow-red.png' />");
	$("div.callout").hover(
		function(){ $(this).addClass("active"); },
		function(){ $(this).removeClass("active"); }
	);
	$("div.callout").click(function () {
		var url = $(this).find("a").attr('href');
		window.location = url;
	}); 
	
	// product-lists: add margin to left column; add arrow to H2; activate entire area
	$("div.product-list div.product:even").css({marginRight:"20px"});
	$("div.product-list div.product h2").append("<img src='/images/arrow-red.png' />");
	$("div.product-list div.product").hover(
		function(){ $(this).addClass("active"); },
		function(){ $(this).removeClass("active"); }
	);
	$("div.product-list div.product").click(function () {
		var url = $(this).find("a").attr('href');
		window.location = url;
	});
	
	// pen rollovers
	var pen = $("div.swatches ul").attr("id");
	var swatch1 = $("div.swatches ul li:first span:first").attr("title");
	var swatch2 = $("div.swatches ul li:first span:last").attr("title");
	var finish = $("div.swatches ul li").attr("title");
	var id = $("div.swatches ul li").attr("id");
	$("div.showcase div").prepend("<img class='main' />");
	$("div.showcase div img.main").attr({src:"/images/writing/"+id+"-"+pen+"-"+swatch1+"-"+swatch2+".png"});
	$("div.showcase div").prepend("<img class='shadow' src='/images/writing/shadow.png' />");
	$("div.showcase label").text(finish);
	
	$("div.swatches ul li").mouseover(function(){
		swatch1 = $(this).children("span:first").attr("title");
		swatch2 = $(this).children("span:last").attr("title");
		finish = $(this).attr("title");
		id =$(this).attr("id"); 
		$("div.showcase div img.main").attr({src:"/images/writing/"+id+"-"+pen+"-"+swatch1+"-"+swatch2+".png"});
		$("div.showcase label").text(finish);
	});
	
	// warranty hide/show info
	/* this is currently not being used 
	var warrantyData = "";
	$("select.warranty").change(function(){
		warrantyData = $(this).val();
		$("div.warranty-data").hide();
		$("div#"+warrantyData).show();
		equalHeight();
		});
	*/
	
	// signature stories navigation
	$("div.signature").children("img.banner:first").hide();
	$("div.signature").children("div.hidden:first").show();
	$("div.signature img.banner").click(function(){
		$(this).hide();
		$(this).siblings("div.hidden").show();
		$(this).parent("div.signature").siblings("div.signature").children("img.banner").show();
		$(this).parent("div.signature").siblings("div.signature").children("div.hidden").hide();
	});
	
	$("select#email").change(function(){
		if ( $(this).val() == "SInformation@bicworld.com" ) {
			$("table.retailer").slideDown();
		} else {
			$("table.retailer").slideUp();
		}
	});
	
	
	// all pages: content is invisible until everything loads
	$("body div").css({visibility:"visible"});
	
	// all pages: content is invisible until everything loads
	$("div.banner").show(1500);
}


