$(document).ready(function(){

$('#s1').cycle({ 
    delay:  4000, 
    speed:  1000, 
    before: onBefore 
}); 
 
function onBefore() { 
    $('#title h3').html(this.alt); 
}; 

$(document).pngFix();



$("a.project_link").click(function () {

  var id =  $(this).attr("title");
  var post_id =  $(this).attr("rel");
  
  $("#" + id).hide("slow");
  
  $("#" + id + "_container").load("/wp-content/plugins/ajax_calls_postback.php", {id: post_id}, function(){
     $("#" + id + "_container").show("slow");
     $("#" + id + "_container a").slimbox();
  });
    
  return false;
  
});

});


