<!--

function hideNavigation( className ) {
	$('.'+className).next('ul').hide();
	$('.'+className).toggleClass("active");
	return false;
}

jQuery().ready(

	function(){

		$('ul#productSamples span.productSpecsNoJS').toggleClass('productSpecs');

		$('a.linkProductImage').hover(
			function(){
				$(this).children('span.productSpecs').fadeIn("fast");
				return false;
			},
			function(){
				$(this).children('span.productSpecs').fadeOut("fast");
		  		return false;
			}
		);

		$('.showByType').click(
			function(){
				$(this).next('ul').slideToggle();
				$(this).toggleClass("active");
				return false;
			}
		);

		$('.showByBranch').click(
			function(){
				$(this).next('ul').slideToggle();
				$(this).toggleClass("active");
				return false;
			}
		);

		$('#searchText').click(
			function(){
				$(this).select();
        		$(this).focus();
			}
		);

	}
);

-->