$(function(){
	$('#vmenu>li').click(function(){
		$(this).find('ul:visible').hide(600);
		$(this).siblings().find('ul:visible').hide(600);
		$(this).find('ul:hidden').fadeIn(500);
	})
	
	$('#resimgoster').hide();

	$(this).find('#orta .icerik img').click(function(){
		$('#resimgoster').html('');
		resimlink = $(this).attr('src');
		$('#resimgoster').fadeIn(500);
		$('#resimgoster').html('<div><img alt="" src="'+resimlink+'" /><span>Kapat</span></div>');
		//$('#resimgoster').stop().fadeTo(100,1);
		
	});
	
	$('#orta .icerik img').hover(function(){
		$(this).fadeTo(1,0.6);
	});

	$('#orta .icerik img').mouseleave(function(){
		$('#orta .icerik img').fadeTo(1,1);	
	});

	$('#resimgoster').click(function(){
		$('#resimgoster').fadeOut(500);
	});
	//alert($('#orta .icerik img').attr());
	
});
function takvim_goster() {
	$.datepicker.regional['tr'] = {
		closeText: 'kapat',
		prevText: '&#x3c;geri',
		nextText: 'ileri&#x3e',
		currentText: 'bugün',
		monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran',
		'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'],
		monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz',
		'Tem','Ağu','Eyl','Eki','Kas','Ara'],
		dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'],
		dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
		dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
		weekHeader: 'Hf',
		dateFormat: 'dd.mm.yy',
		firstDay: 1,
		isRTL: false,
		showMonthAfterYear: false,
		yearSuffix: ''};
	$.datepicker.setDefaults($.datepicker.regional['tr']);
		
	$( "#takvim" ).datepicker({
		changeMonth: true,
		changeYear: true,
		showButtonPanel: true		
	});	
}
