$(document).ready(function(){

$("#dmenu>li>a").click(function(e){
e.preventDefault();
var url = $(this).attr("href").replace(/#/g,"");
//alert(url);
/* PAGE CALL */

$.ajax({
    url: '/pages/'+url,
    type: 'GET',
    dataType: 'html',
    timeout: 1000,
    error: function(){
    },
    success: function(html){
	$("#bcontent").html(html);
$("#doPhone").bind("click", function(e){
e.preventDefault();
doPhone();
    });

    }
}); 


/* END OF PAGE CALL */

});

$("a[rel=callin]").click(function(e){
e.preventDefault();
url = $(this).attr("href");
$.ajax({
    url: url,
    type: 'GET',
    dataType: 'html',
    timeout: 8000,
    error: function(){
    },
    success: function(html){
	$("#bcontent").html(html);
    }
}); 

});



function doPhone(){

$.ajax({
    url: "/alerts.php?phone="+$("#dnumber").val(),
    type: 'GET',
    dataType: 'html',
    timeout: 1000,
    error: function(){
    },
    success: function(html){
	$("#bcontent").html(html);
    }
}); 

return false;
}


});