//jQuery Start
jQuery(function($) {

	// *************************************
	// dnnNav
	// *************************************
	$("div#dnnNav div#dnnNavFrame ul.level1 li").mouseenter(function(){
		$(this).css("width", $(this).width());
		$("ul.level2:not(:animated)", this).css("width","27em").slideDown("fast");
	}).mouseleave(function(){
		$("ul.level2", this).slideUp("fast");
	});


	// *************************************
	// dnnTeaser
	// *************************************

	var random = Math.floor(Math.random()*4)+1;
	$(".accordion").hrzAccordion({eventTrigger:"mouseover",openOnLoad:random, cycle: true, cycleSpeed: "5000", closeSpeed: "100", openSpeed: "100"});


	// *************************************
	// manufacturer
	// *************************************
	$("div.manufacturer").click(function(){
		$("div.productList", this).slideToggle();
		$(this).toggleClass("open");
	});


});

function dnnArrow(position, colorFG, colorBG) {

	var p = Raphael(position, 16, 16);

	var c = p.circle(70, 70, 70);
	c.scale(.1,.1, 1, 1);
	c.attr("stroke", false);
	c.attr("fill", colorFG);

	var t = p.path("M0 0L0 100 87 50z");
	t.scale(.07,.07, 6.25, 4.5);
	t.attr("stroke", false);
	t.attr("fill", colorBG);

	return p;
}


