	function splash() {
	      $("#splash_tag_1").fadeIn(100, function(){
				$(this).next("div").fadeIn(1000, function(){
					$(this).next("div").fadeIn(1000);
				})	
			})
	      
	    };
	function getContent(){
		$('a.content').click(function() {
			$.ajax({
			  url: this.href,
			  type: 'GET',
			  dataType: 'html',	
	  success: function(data) {
			    $('#content_main').html(data)
	 },		
	  error: function() {
			    //window.location = this.href
	  }
			});
			return false
		});
	};
	function contact() {
		   $('#contact_drop_trigger').toggle(function() {
		    	$('#contactbar').slideDown(400)
		    }, function() {
		    	$('#contactbar').slideUp(400)
		    });
		    $('#splash_tag_shell').find('#splash_tag_1').animate({opacity: 1}, 300, function() {
		     	$(this).next().find('div').show()
		    })	
	};
	
	jQuery(document).ready(function($) {
				getContent();
				contact();
			    splash();
				$('body#splash_body').click(function() {
					window.location = "home.html"
				});
	});
	

