function loadHome(x) {

	new Ajax.Request('/ajax/content.php', { evalScripts:true, parameters:'CPG_ID='+x,  onComplete: function() {}, onSuccess: function(response) { response.responseText; } , onFailure:function(){alert('this is a problem');}}); 

}



function loadNotes() {

	new Ajax.Request('/ajax/notes.php', { evalScripts:true, parameters:'CPG_ID=3',  onComplete: function() {}, onSuccess: function(response) { response.responseText; } , onFailure:function(){alert('this is a problem');}}); 

}



function loadContact() {

	new Ajax.Request('/ajax/contact.php', { evalScripts:true, parameters:'CPG_ID=11',  onComplete: function() {}, onSuccess: function(response) { response.responseText; } , onFailure:function(){alert('this is a problem');}}); 

}



function sendContact() {

	new Ajax.Request('/ajax/sendContact.php', { evalScripts:true, parameters:Form.serialize('CONTACT'),  onComplete: function() {}, onSuccess: function(response) { response.responseText; } , onFailure:function(){alert('this is a problem');}}); 

}



function loadGalleryItem(x) {

	new Ajax.Request('/ajax/gallery.php', { evalScripts:true, parameters:'CPG_ID='+x,  onComplete: function() {}, onSuccess: function(response) { response.responseText; } , onFailure:function(){alert('this is a problem');}}); 

}