<!--//--><![CDATA[//><!--
				  
// ----- SuperfishMenu Init -------------------------------------------------------//

		jQuery(document).ready(function($) { 
				$("ul.sf-menu").superfish().find('ul').bgIframe({opacity:false}); 			
		 });
		
// ----- IE radio and checkbox margin fix -------------------------------------------------------//
		  
		jQuery(document).ready(function($) { 
			if(jQuery.browser.msie) {
				if(jQuery.browser.version < 8.0 ) {
					$("div.survey input[@type=radio]").css("margin-left", "-3px");
  	 				$("div.survey input[@type=radio]").css("margin-top", "-4px");
				}
			}
  		});		
		
// ----- Toggle Visibility Of Customer Area -------------------------------------------------------//

		jQuery(document).ready(function(){
			jQuery.each(jQuery("div#pageHeader a.toggleVisibility").next("div.customerArea"), function() {
			jQuery(this).hide();
			jQuery(this).prev("a.toggleVisibility").addClass("toggleDown");
			})
			jQuery("div#pageHeader a.toggleVisibility").click().toggle(
				function(){
					jQuery(this).addClass("toggleUp");
					jQuery(this).removeClass("toggleDown");
					jQuery(this).next("div.customerArea").show();
					},
				function(){
					jQuery(this).addClass("toggleDown");
					jQuery(this).removeClass("toggleUp");
					jQuery(this).next("div.customerArea").hide();
					}
					)
			}); 
			
// ----- Toggle Visibility Of Comment Area -------------------------------------------------------//

		jQuery(document).ready(function(){
			jQuery("button.toggleVisibility").click().toggle(
				function() {jQuery("div.commentArea").show();},
				function() {jQuery("div.commentArea").hide();})
		});		

// ----- 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]+"'");
}

//--><!]]>



