$(document).ready(function(){
	$('#exampleSearch').click(function(){
        	$('#textSearch').val($(this).text());
	});

	$('.more').click(function(){
		$('.'+$(this).attr('id')).css('display','block');
		$(this).css('display','none');
	});
	
	if($("#jur_chk").attr('checked')==false) $('#jur_tbl').css('display', 'none');
	$('#jur_chk').click(function(){
		if($("#jur_chk").attr('checked')==false) $('#jur_tbl').css('display', 'none');
		else $('#jur_tbl').css('display','block');
	});
	
	
		
	

	
	$('#brands_toggler').click(function () {
		$('#vendors').toggle("slow");
	});    
	
});

function opener(id) {
	var id;
	document.getElementById(id).style.display = "block";
}
function closer(id) {
	var id;
	document.getElementById(id).style.display = "none";
}
