
$( document ).ready( function() 
{
	$("#btn_about").hover( function(){ this.src="/assets/layout/nav_buttons/about_o.gif"; }, function(){ this.src="/assets/layout/nav_buttons/about.gif" } );

	$("#btn_academics").hover( function(){ this.src='/assets/layout/nav_buttons/academics_o.gif'; }, function(){ this.src='/assets/layout/nav_buttons/academics.gif' } );
	$("#btn_admissions").hover( function(){ this.src='/assets/layout/nav_buttons/admissions_o.gif'; }, function(){ this.src='/assets/layout/nav_buttons/admissions.gif' } );		
	$("#btn_sol").hover( function(){ this.src='/assets/layout/nav_buttons/school-of-law-hover.png'; }, function(){ this.src='/assets/layout/nav_buttons/school-of-law.png' } );			
	$("#btn_degree_programs").hover( function(){ this.src='/assets/layout/nav_buttons/degree_programs_o.gif'; }, function(){ this.src='/assets/layout/nav_buttons/degree_programs.gif' } );
	$("#btn_resources").hover( function(){ this.src='/assets/layout/nav_buttons/resources_o.gif'; }, function(){ this.src='/assets/layout/nav_buttons/resources.gif' } );
	$("#btn_request_info").hover( function(){ this.src='/assets/layout/nav_buttons/request_info_o.gif'; }, function(){ this.src='/assets/layout/nav_buttons/request_info.gif' } );
	$(".textfield").focus( function() { $(this).addClass( "textfield_focus" ); } ).blur( function() { $(this).removeClass( "textfield_focus" ); } );

	$( '#sidebar_box' ).height( $( '#content_box' ).height() );

	$( function () {
		$('.dropdown').each(function () {
			$(this).parent().eq(0).hover(function () {
			$('.dropdown:eq(0)', this).show();
		}, function () {
		$('.dropdown:eq(0)', this).hide();
			});
		});
	});

src = "/assets/menu/dropselectionright.png";


} );
				
				

var appObj =
{
	copy_mailing_address : function()
	{
		$( '#pa_address1' ).val( $( '#ma_address1' ).val() );
	
	}
	
};
