$.ajaxSetup ({
		cache: false
	});

jQuery(function( $ ){

$('#content').load('info.html');

//header icons
			var about = $( "#headabout" );
			var phone = $( "#headphone" );
			var email = $( "#heademail" );
			var pdf = $( "#headpdf" );
			
			$( "#iconcontact" ).hover(
				function( event ){
					event.preventDefault();
					if (about.is( ":hidden" )){
						about.show();
					} else {
						about.hide();
					}
				}
			);
						
			$( "#iconphone" ).hover(
				function( event ){
					event.preventDefault();
					if (phone.is( ":hidden" )){
						phone.show();
					} else {
						phone.hide();
					}
				}
			);
			
			$( "#iconemail" ).hover(
				function( event ){
					event.preventDefault();
					if (email.is( ":hidden" )){
						email.show();
					} else {
						email.hide();
					}
				}
			);
			
			$( "#iconpdf" ).hover(
				function( event ){
					event.preventDefault();
					if (pdf.is( ":hidden" )){
						pdf.show();
					} else {
						pdf.hide();
					}
				}
			);
			
var ajax_load = "<img class='loading' src='image/load.gif' alt='loading...' />";

//ABOUT ME------------------------------------------------------
$("#iconcontact").click(function(){
		$('#content').html(ajax_load).load('about.html');
});

});
