// JavaScript Document
$(window).load(function(){
	if ($("h4.city").length > 0){
		$("h4.city").next().each(function(){
			$(this).css({height: $(this).height()+"px", overflow: 'hidden', display: 'none'});// .slideToggle(150);
		});
		$("h4.city").css({cursor: 'pointer'}).click(function () {
			if( $(this).next().css( 'display' ) == "none" ){
				$(this).find('.sign').text("-");
			}
			else{
				$(this).find('.sign').text("+");	
			}
			$(this).next().slideToggle(800);
			$(this).next().toggleClass('directions_open');
		});
		$("h4.city").append('<span class="sign">+</span>');
		
	}
	var searchDef = $('#attorney-search').val();
	$('#attorney-search').focus(function(){
			$(this).val(''); 	
	});
	$('#attorney-search').blur(function(){
		if( $(this).val() == ""){
			$(this).val(searchDef); 
		}
		
	});
});
