$(function(){

	//opening and closing up of search panel	
	$("a#open_descr").toggle(
	function(){
		$("div#description").show("slow");
			$("a#open_descr").html("hide description <<<");	
		
	},function(){
$("div#description").hide("slow");
		$("a#open_descr").html("show description >>>");
		
	});

	
	
})