// JavaScript Document
$(document).ready(function() {
						   
						   
	  
						 
	$('#tutorial').click(function(){
							 var url = 'tutorials/1.htm';
							 $('#siteContent').html("");
							$('#siteContent').fadeIn('slow',getNewContent);
						function getNewContent() {
													$('#siteContent').load(url);
												}
						function showNewContent() {
													$('#siteContent').fadeIn('normal');
													}
							 });
							 });
