// GOOGLE: LIBRARIES

google.load("jquery", "1.4.0");
google.load("jqueryui", "1.7.2");

// GOOGLE: INIT

google.setOnLoadCallback(	
		
	function () {		
		
		// JQUERY: SETUP
		
		$.ajaxSetup({
			cache: false,
			contentType: 'application/x-www-form-urlencoded;charset=utf-8',
			dataType: 'json',
			type: 'POST',	
			url: document.location.href	
		});
	
	}

)

