// JavaScript Document
$(document).ready(function() {
			
			
					
			$("#home-content-main").load("/home/start.php", function() {
				  		Cufon.replace('#home-content-main h2, #home-content-main p, #home-content-main h5, #home-content-main h4, #home-content-main h3', { autoDetect: true }); 
						
				});
		  $('#main-content a').click(function() {
		  		var address = $(this).attr("href").slice(1);
				$("#homesection-background").css("backgroundImage","url(/home/images/Home-"+address+"-Background.png)");
				$('#home-content-main').fadeOut('fast', function() {
					$("#home-content-main").load("/home/"+address+".php", function() {
							Cufon.replace('#home-content-main ul li, #home-content-main h5, , #home-content-main h3', { autoDetect: true }); 
							Cufon.replace('#home-content-main h2, #home-content-main p,#home-content-main h4', { fontFamily: 'Swis721 Th BT' })
							$('#home-content-main').fadeIn('fast', function() { 
							
									});
							
					});
				});
			});
});
