// JavaScript Document

function aa1(){
	var ass = $('.aa1').css("height");
	if (ass == '5px'){
	
		$('.aa1').animate({"height":"100%"});
		$('.agent_title').css("background-image"," url(images/close.png)");
	}
	
	else {
		 $('.aa1').animate({"height":"5"});
		 $('.agent_title').css("background-image"," url(images/open.png)");
	}

}; 
