$(function () {
		function ajaxify(file){
			$('#loading').slideUp(1,function(){$(this).remove();});
			$('<div id="loading"></div>').html('<img src="loading.gif" alt="" /><br />Loading...').appendTo('#controls').show();
			$.get(file,function(data) {
				$("#main").fadeOut(300,function(){
					$(this).html(data).fadeIn(700,function(){
						$('#loading').slideUp(1,function(){$(this).remove();});
					});
				});
			});
		}
$("#controls a").click(function(){
			ajaxify($(this).attr('href'));
return false;
		});						
ajaxify('home-image4.html');			
});
$(document).ready(function(){
    $('.homeone, .hometwo, .homethree').hover(function () {
      $(this).addClass("highlight");},
	function () {
      $(this).removeClass("highlight");
	  });
	  $('.homeone').click(function () { 
      $('.hometwo, .homethree').animate({right: "14px"}, 90).removeClass("highlight2");
      $(this).animate({right: "30px"}, 90).addClass("highlight2"); 
	  });
	  $('.hometwo').click(function () { 
      $('.homethree, .homeone').animate({right: "14px"}, 90).removeClass("highlight2");
      $(this).animate({right: "30px"}, 90).addClass("highlight2");
	  });
	  $('.homethree').click(function () { 
      $('.hometwo, .homeone').animate({right: "14px"}, 90).removeClass("highlight2");
      $(this).animate({right: "30px"}, 90).addClass("highlight2");
	  });
	  
  });
$(document).ready(function(){
$('.homeone').animate({right: "14px"}, 1100);
$('.homeone').addClass("highlight2");
$('.homeone').animate({right: "30px"}, 430);
  });



