// JavaScript Document

//Adds B&R menu to footer
$(document).ready(function() {
if($.browser.msie && $.browser.version=="6.0") {
$(a.footerMenu).html('Other B&amp;R');
} else {
$('#site-selector').parent().hoverIntent(function () {								
$('#site-selector').fadeIn('slow');
}, function() {
	$('#site-selector').fadeOut('fast');
});
}
});

//Table Striping

$(document).ready(function() {
				$('table.product tbody tr:odd').addClass('tableline2');
});



$(document).ready(function() {
				$('#navbar ul ul ul li').mouseover(function() {
  						$(this).addClass('menudropshadow');
});
				$('#navbar ul ul ul li').mouseout(function() {
  						$(this).removeClass('menudropshadow');
});
});
