$(function(){
	$(".menu li a").click(function(){
		var _this=$(this);
		if(_this.next("ul.submenu").length>0){
			if(_this.next().is(":visible")){
				_this.html(_this.html().replace("▼","►")).next().hide();
			}else{
				_this.html(_this.html().replace("►","▼")).next().show();
			}
			return false;
		}
	});

	$("a").focus( function(){
		$(this).blur();
	});
});

