<!--//--><![CDATA[//><!--
				  
				  
// ----- jQuery Init -------------------------------------------------------//


		jQuery(document).ready(function($) { 
																							
				$("ul.sf-menu").superfish().find('ul').bgIframe({opacity:false}); // ----- superfish vertical menu--------//
				
				if($("div.scrollable div.items a").length > 1 ) {
						$("div.scrollable").scrollable({size:1,clickable:false}).autoscroll({steps:1,autoplay:true,interval:10000}).circular();	// ----- scrollable header banners --------//
				}
				
				$("ul#product-nav a").each(function() { // ----- product menu --------//
						if(jQuery("ul#product-nav a").next())
							{
								jQuery(this).addClass("expand");
							}
						});
						jQuery(".expand").click().toggle(
							function(event) {
								jQuery(this).addClass("active");
								jQuery(this).next().addClass("expanded");
									if (jQuery(this).attr("href") != "#")
										{
											document.location = jQuery(this).attr("href");
										}
									},
							function(event) {
								jQuery(this).removeClass("active");
								jQuery(this).next().removeClass("expanded");
						}
					)

					$(".basketButtons input").hover(function() {$(this).addClass("pretty-hover");}, function() {$(this).removeClass("pretty-hover");}); // ----- Input Button Hover Fix for IE6 --------//
					$(".contentFormButtons input").hover(function() {$(this).addClass("pretty-hover");}, function() {$(this).removeClass("pretty-hover");}); // ----- Input Button Hover Fix for IE6 --------//
	
				});
		
// ----- Toggle Visibility Of Event Details -------------------------------------------------------//

		jQuery(document).ready(function(){
				$("tr.show_hide").addClass("hide");
                $("a.toggleVisibility").click(function(e){
                    e.preventDefault()
                    var nextRow = $(this).parent().parent().next("tr.show_hide");
                    if (nextRow.hasClass("hide")) {
                        nextRow.removeClass("hide");
                    }
                    else {
                        nextRow.addClass("hide");
                    }
                })


			});  		
		
// ----- Browser hacks and fixes -------------------------------------------------------//
		  
		jQuery(document).ready(function($) { 
			if(jQuery.browser.msie) {
				if(jQuery.browser.version < 8.0 ) {
						$("td.doubleBorder").css("width", "705px");
						$(".radioBtn").css("margin-bottom", "3px");
				}
			}
  		});		

// ----- DW -------------------------------------------------------//	
				
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

// ----- IE6 background image flicker fix -------------------------------------------------------//

(function() {
			var m = document.uniqueID && document.compatMode && !window.XMLHttpRequest && document.execCommand;
				try{ if(!!m){ m("BackgroundImageCache", false, true)}}catch(oh){};
			}
		)();

//--><!]]>



