var search = {
    init: function() {
        $('.manufacturer>h5').mouseenter(function() {
                $(this).addClass('hover');
            })
            .mouseleave(function() {
                $(this).removeClass('hover');
            })
            .click(function() {
                $(this).next().toggle();
            });
		
			 var man = window.location.hash;
			 if(man != '')
			 {
			 	man = man.replace('#', '');
		     	$('h5:contains("'+ man +'")').next().toggle();
			 }
		 
    }
}
$(document).ready(search.init);

