$(function() {
	
	// In absense of global editable regions, AJAX is used to load all global regions form the index page.
	
	$("#footer_last_child").load("index.html #footer_last_child");
	
	$("#page_left").load("index.html #page_left_ajax");

	$("#header_ajax_holder").load("index.html #header_ajax", function(){
		Cufon.replace('#header_ajax_holder h6, #header_ajax_holder h5');
	});
	
	$("#global_content_btm_ajax_holder").load("index.html #global_content_btm_ajax");

	
	$('div#page_right_content img').each(function(){

		if($(this).attr('src').indexOf('default_image.jpg') != -1){
		    $(this).parent().hide();
		}

	});
	

});


