  var contact = 0;
  var initial = 1;
  $(document).ready(function() {
   		
   		//nav hover effect
	    $('#navigation a').css({backgroundPosition: "0 0"}).mouseover(
	    		function(){$(this).animate({backgroundPosition: "0 -1200"},400);}).mouseout(
	    		function(){$(this).animate({backgroundPosition: "0 0"},400);
	    	});

		//ajax loading
		$('#navigation a.ajax').click(function(e){
			e.preventDefault();
			if(initial == 1){
				$('#initial').animate({width:'0px',height:'0px'},200);
				initial = 0;
			}
			$('#loaderback').fadeIn();
			$('#loadcontent').fadeOut(300);
			link = $(this).attr('href');
	    		setTimeout("$('#loadcontent').load(link).delay(300).fadeIn();",500);
	    		setTimeout("$('#loaderback').fadeOut();",500);			
		});	
		
		//contact slide
		$('#a_contact').click(function(e){
			e.preventDefault();
			if(contact ==0){
				$('#contact').animate({height:"127px"},400);
				setTimeout("$('#contactpad').animate({width:'60px'},600,'swing');",400);
				contact = 1;
			} else {
				$('#contactpad').animate({width:'1040px'},600,'swing');
				setTimeout("$('#contact').animate({height:'0px'},400);",800);
				contact = 0;	
			}	
		});
		
		//unload ajax content
		$('#a_home').click(function(){
			if(initial == 0){
				$('#loadcontent').fadeOut(300);
				setTimeout("$('#initial').animate({width:'978px',height:'134px'},200);$('#loadcontent').html('');",300);
				initial = 1;	
			}
		});
    
    
  });
  
  
