// feature page functions
$(document).ready(function(){ 

$(window).load(function() {
	$('#PAGE_AREA').load('/ahp/index/main-text.php').show();	
});	

$("#WEBSITE_DEVELOPMENT").unbind('click').bind("click", function() {
		$('#PAGE_AREA').load('/ahp/services/website-development.php').show();
});

$("#MARKETING_SALES").unbind('click').bind("click", function() {
		$('#PAGE_AREA').load('/ahp/services/website-marketing.php').show();		
});

$("#WEBSITE_REVIEW").unbind('click').bind("click", function() {
		$('#PAGE_AREA').load('/ahp/services/website-review.php').show();
});

$("#OTHER_SERVICES").unbind('click').bind("click", function() {
		$('#PAGE_AREA').load('/ahp/services/website-other.php').show();
});


// eof function	
});
