$(function() {
	
	
		$('#nav a.blog_link').click(function(e){
		$links =  $(this);
		
		//URL = $links.attr("href");
		URL = window.location.protocol+"//"+window.location.hostname+"/posts/";
		URL = URL + " #blog_posts";
		
		$('.blog_content').load(URL, function() {

		});
		

				
	});


	jQuery('.ajax_nav').live('click', function(e){
		e.preventDefault();
		var link = jQuery(this).attr('href');
		$.scrollTo( 0, 300);
		jQuery('#blog_posts').html('<div style="text-align:center; margin-top:20px;"><img src="http://aw-projects.com/wp-content/themes/aw/91.gif" /></div>');
		jQuery('#blog_posts').load(link,function(data){
		$.mask.fit();
});
		$.mask.fit();

	});

});

	
