var $h = jQuery.noConflict();
$h(document).ready(function(){
	$h("#bottomnav").hide();
	$h(".pop").click(function(){
	 if(document.getElementById('bottomnav').style.display == "none"){
		$h("#bottomnav").fadeIn("fast",function(){
		$h("a.pop span").css("background","url('http://www.tockwith-together.info/blog/wp-content/themes/monochrome/img/tag2.gif') no-repeat right center");

		});
	}else{
			$h("#bottomnav").fadeOut(function(){
			$h("a.pop span").css("background","url('http://www.tockwith-together.info/blog/wp-content/themes/monochrome/img/tag1.gif') no-repeat right center");

			});	
		}
    });	
}); 

