$(document).ready(function(){

/* ------------------------------------------------------------------------------------
-- Mark as javascript enabled 
------------------------------------------------------------------------------------ */
	$("body").addClass("js");

/* ------------------------------------------------------------------------------------
-- Homepage Hero
------------------------------------------------------------------------------------ */
	$(".home #hero").rrSimpleSlideshow (
		{
			fadeSpeed: "slow",
			pauseTime: 6000,
			slideElement: "li"
		}
	);//rrsimpleslideshow plugin
	
/* ------------------------------------------------------------------------------------
-- product listings
------------------------------------------------------------------------------------ */
	$(".itemsList li:even").addClass("left");

/* ------------------------------------------------------------------------------------
-- Lists
------------------------------------------------------------------------------------ */
	$("#footer li:first-child").addClass("first");
	$("#footer li:last-child").addClass("last");

/* ------------------------------------------------------------------------------------
-- Highlight intro paragraphs
------------------------------------------------------------------------------------ */
	$("#mainContent.standardContent #mainCol .content p:first").addClass("first");

/* ------------------------------------------------------------------------------------
-- Hack shopp code into something more nice and accessible
------------------------------------------------------------------------------------ */
	//$("#shopp-bats-orderby-menu").prepend('<label for="shopp_orderby">Order by:</label>').find("select[name*='shopp_orderby']").attr("id","shopp_orderby");

	$("select[name*='shopp_orderby']").attr("id","shopp_orderby").parent().addClass("orderByForm").prepend('<label for="shopp_orderby">Order by:</label>');

});

