$(document).ready(function() { 
    
    // $("#menu").load('menu.html', function(response, status, xhr){
    //     console.log(status);
    // });
    
    //$('#menu').load("../../menu.html",function(){
    //  var xUrl = document.location.pathname;
    //  var xFile = xUrl.substring(xUrl.lastIndexOf('\/')+1,xUrl.length);
    // });
    // 
    // $('#twitter').load("../../twitter.html",function(){
    //  var xUrl = document.location.pathname;
    //  var xFile = xUrl.substring(xUrl.lastIndexOf('\/')+1,xUrl.length);
    // });

	
	// bu çalışmıyor zira common js yüklendikten sonra menu.html yükleniyor bu id de menu.html nin içinde
    $("#xmenu li a").mouseover(function(){
        $(this).removeClass().addClass("mousehover");
    }).mouseout(function(){
        $(this).removeClass();      
    });

    $("#xmenu li:last-child").css({background:"none"})
    
    if( $('.gallery').length > 0 ){
      $(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
     };

});
