<script type="text/javascript">
$(function() {
tab_menu();
});
var aktif_tab = 0;
function tab_menu() {
tab_degistir(0);
$("#tab_basliklar > span").mouseover(function() {
var index = $("#tab_basliklar > span").index(this);
if (aktif_tab != index) {
tab_degistir(index);
aktif_tab = index;
}
});
}
function tab_degistir(index) {
$("#tab_basliklar > span").stop().animate({opacity:"0.4"}, 500);
$("#tab_basliklar > span:eq(" + index + ")").stop().animate({opacity:"1"}, 500);
$("#tab_goster").html($("#tab_menuler > div:eq(" + index + ")").html());
$("#tab_goster a").css("opacity", "0.4").animate({opacity:"1"}, 500);
}
</script>