var $h = jQuery.noConflict();
$h(document).ready(function(){
	$h("#bottommenu").hide();
	$h(".drop").click(function(){
	 if(document.getElementById('bottommenu').style.display == "none"){
		$h("#bottommenu").slideToggle("fast",function(){
		});
	}else{
			$h("#bottommenu").fadeOut(function(){
			});	
		}
    });	
}); 

