
function derleToplaHerseyi(){
$(".icerik1").corner("bottom");
$(".icerik2").corner("25px tr");
$(".icerik3").corner("25px tr");

$("#divanKapat").click(function(){
$(".icerik1").animate({left:"20",top:"-180"},"medium");
});

$("#divan").mouseover(function(){
$(".icerik1").animate({top:"10",left:"20"},"medium");
});

$("#neyler").hover(function(){
$(".icerik2").animate({opacity:"show",width:"350"},"medium");
},function(){
$(".icerik2").animate({opacity:"hide"},"medium");
});

$("#iletisim").hover(function(){
$(".icerik3").animate({opacity:"show",width:"350"},"medium");
},function(){
$(".icerik3").animate({opacity:"hide"},"medium");
});

$("#tesekkur").hover(function(){
$(".icerik4").animate({opacity:"show",width:"350"},"medium");
},function(){
$(".icerik4").animate({opacity:"hide"},"medium");
});


$(".divanUye").hover(function(){
$("#resimDivan").html("<img src='suretler/"+$(this).attr("id")+"2.jpg'/>");
},function(){
$("#resimDivan").html("");
});


}