// JavaScript Document
// This script will load the contents of the current page #Tab1Div with content from #Tab1Div from another page for all links bound with the div #Ajax.

$(document).ready(function() {
	
	$('.AjaxLoad').click(function() {
    var url=$(this).attr('href');
    $('#Tab1Div').load(url + ' #Tab1Div');
	return false;
  	});
});

