$(document).ready(function(){
	$("#tarih1_show").datepicker();
	$("#tarih2_show").datepicker();
	$("#tumtarihler").datepicker();
	$('a#tarih1').click(
		function() {
		    $("#tarih1_show").fadeIn("fast");
		}
	);
	$('a#tarih2').click(
		function() {
		    $("#tarih2_show").fadeIn("fast");
		}
	);
	$('#tarih1_show .hasDatepicker').mouseleave(
		function() {
		    $(this).fadeOut("fast");
		}
	);
	$('#tarih2_show .hasDatepicker').mouseleave(
		function() {
		    $(this).fadeOut("fast");
		}
	);
	        $('#slidercontent').anythingSlider({
            easing: "easeInOutExpo",
            autoPlay: true,
            startStopped: false,
            delay: 6000,
            animationTime: 800,
            hashTags: false,
            buildNavigation: true,
            pauseOnHover: true,
            navigationFormatter: null
        });
});

