$(document).ready(function(){
	

    //Kapat düğmesi:
		
		$(".kapativer").click(
			function () {
				$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
					$(this).slideUp(400);
				});
				return false;
			}
		);

    //Kapat ve girişe yönlendir:
		
		$(".kapativergirise").click(
			function () {
				$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
					$(this).slideUp(400);
					window.location = "default.asp?/anaSayfa/";
				});
				return false;
			}
		);
		
    //Hatalar için kapat:
		
		$(".kapativerhata").click(
			function () {
				$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
					$(this).slideUp(400);
				});
				return false;
			}
		);
    //Hata ve girişe yönlendir:
		
		$(".kapativerhatagirise").click(
			function () {
				$(this).parent().fadeTo(400, 0, function () { // Links with the class "close" will close parent
					$(this).slideUp(400);
					window.location = "default.asp?/anaSayfa/";
				});
				return false;
			}
		);
		
		
});
  
  
  
