/*MEGA MENU*/

    $(document).ready(function() {

      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 100,		// mrg - changed from 1 to 100
         sensitivity: 4,	// mrg - changed from 1 to 4
         over: addMega,
         timeout: 100,
         out: removeMega
    };

    $("li.menuitem").hoverIntent(megaConfig);

	$('.block-product-details a:contains("Click Here for Larger Image")').addClass('alfc-a-tag-test');  // mrg testing - find the a tag "click here for larger image"		
	
	$('#spec_data table:eq(2)').addClass('alfc-table-test');	// mrg testing - find the third table in the #spec_data div

    });
	
	
/*drop box to visit brand url - darrell zello 9-29-09*/
function ShopByBrandSelector() {
  var url=document.shopbybrand.selection.value
  document.location.href=url

}