function showToday(){
	// Array of day names
	var dayNames = new Array("Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi");
	
	// Array of month Names
	var monthNames = new Array("Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık");
	
	var now = new Date();
	
	var todayDate = now.getDate() + " " + monthNames[now.getMonth()]  + " " + now.getFullYear() + ", " + dayNames[now.getDay()];
	
	$("#todayDate").html(todayDate);
	
}
$(document).ready(function() {
						   
   showToday();
   
  
});

$(window).load(function() {
						
	$('#slider').nivoSlider({
		effect:'random',
		slices:10,
		animSpeed:1000,
		pauseTime:3000,
		directionNav:false, //Next & Prev
		directionNavHide:false, //Only show on hover
		controlNav:false, //1,2,3...
		beforeChange: function(){},
		afterChange: function(){}
	});
	
});
function toggleContent(mycontent)
{
	$(".subnavigation li").children().removeClass("selectedsubmenu");
	
	$("#link"+mycontent).addClass("selectedsubmenu");
	
	$(".twocolumn").children().hide();
	
	$("#subcontent"+mycontent).show();
}
