$(function(){
	
	$('.tab-contents div:first').show();
	
	$('.tab-nav a').bind('click',function () {
		var thechosenone = $(this).attr('id');
		$('.tab-nav a').removeClass('current');
		$('.tab-contents div').hide();
		$('.tab-contents div.'+thechosenone+'').show();
		$(this).addClass('current');
		return false
	});	
	
	$('a.thumb').lightBox();
	
	$('#announcement marquee').load('duyurular.html');
	
});