document.domain = "guirys.com";

$(document).ready(function(){
	var currPath = window.parent.location.pathname;
	var actualPage = window.parent.document;

	$.post("/support/update-content.php", { curpath: window.parent.location.href, name: actualPage.title, content: $('#content_area',actualPage).html() }, function(data){
		if(data) {
			//alert(data);
		}
	});

});

