$(document).ready(function () {
  $('#menu').menu();
  
  $.ajaxSetup({
    beforeSend : function(xhr) {
      //Workaround detecting if supports overrideMimeType (IE6 for example)
      if(xhr.overrideMimeType) {
        xhr.overrideMimeType('text/html; charset=iso-8859-1');
      }
    }
  });
  $('.ajax').bind('click',function(event){
    event.preventDefault();
    $.get(this.href,{},function(response){ 
      $('#content_layout').html(response)
    });
    return false;
  });
  //php_doc_location: "http://www.agilecarousel.com/make_slides.php",  
  $('#home_foto').agile_carousel({
    url: urlHomeCarousel,
    //path_to_slides: urlHomeCarousel,
    remove_content: "no",
    slide_buttons: "yes",
    transition_type: "fade",
    //next_prev_buttons: "no",
    //first_last_buttons: "yes",
    next_prev_buttons: "yes"
  });
});
