$(function() {

$('.anasayfa').live("click",function() {
var son_deger = $(this).attr("id");


//Get the id of this hyperlink 
//this id indicate the row id in the database 
if(son_deger!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "anasayfa.php",
data: "son_deger=" + son_deger, 
beforeSend:  function() {
$('div#load').html('<img src="loading3.gif" />');
},
success: function(html){//html = the server response html code
$("div#load").html('');
$("div#site_icerik").html('');
$("div#site_icerik").append(html);
$("div#icerikgel").hide().fadeIn(1000).show();
}
});

}

return false;


});
});
//////////////////////anasayfa js////////////////////////

$(function() {

$('.garanti').live("click",function() {
var son_deger = $(this).attr("id");


//Get the id of this hyperlink 
//this id indicate the row id in the database 
if(son_deger!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "garanti.php",
data: "son_deger=" + son_deger, 
beforeSend:  function() {
$('div#load').html('<img src="loading3.gif" />');
},
success: function(html){//html = the server response html code
$("div#load").html('');
$("div#site_icerik").html('');
$("div#site_icerik").append(html);
$("div#icerikgel").hide().fadeIn(1000).show();
}
});

}

return false;


});
});
//////////////////////garanti js////////////////////////




$(function() {

$('.hakkimizda').live("click",function() {
var son_deger = $(this).attr("id");


//Get the id of this hyperlink 
//this id indicate the row id in the database 
if(son_deger!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "hakkimizda.php",
data: "son_deger=" + son_deger, 
beforeSend:  function() {
$('div#load').html('<img src="loading3.gif" />');
},
success: function(html){//html = the server response html code
$("div#load").html('');
$("div#site_icerik").html('');
$("div#site_icerik").append(html);
$("div#icerikgel").hide().fadeIn(1000).show();
}
});

}

return false;


});
});
//////////////////////haskkımızda js////////////////////////



$(function() {

$('.iletisim').live("click",function() {
var son_deger = $(this).attr("id");


//Get the id of this hyperlink 
//this id indicate the row id in the database 
if(son_deger!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "iletisim.php",
data: "son_deger=" + son_deger, 
beforeSend:  function() {
$('div#load').html('<img src="loading3.gif" />');
},
success: function(html){//html = the server response html code
$("div#load").html('');
$("div#site_icerik").html('');
$("div#site_icerik").append(html);
$("div#icerikgel").hide().fadeIn(1000).show();
}
});

}

return false;


});
});
//////////////////////iletisim js////////////////////////




$(function() {

$('.urunler').live("click",function() {
var gurup_id = $(this).attr("lang");
var sayfano = $(this).attr("name");


//Get the id of this hyperlink 
//this id indicate the row id in the database 
if(gurup_id!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "grup.php",
data: "gurup_id=" + gurup_id + "&sayfano=" + sayfano, 
beforeSend:  function() {
$('div#load').html('<img src="loading3.gif" />');
},
success: function(html){//html = the server response html code
$("div#load").html('');
$("div#site_icerik").html('');
$("div#site_icerik").append(html);
$("div#sayfalama").hide().fadeIn(1000).show();
$("div#icerikgel").hide().fadeIn(1000).show();
}
});

}

return false;


});
});
//////////////////////iletisim js////////////////////////
