﻿$(document).ready(function () {
	$('a[rel*=external]').click(function(){window.open(this.href);return false;});
	
	/*
	$.history.init(function(url) {		
		if(document.location.hash.length > 1)
			$('#alt_sayfa_orta_icerik, .orta').load(url);
	});
	*/
	
    $("input:text, textarea, input:password").each(function () {
        var a = $(this).attr("tooltip");
        if (a) {
            if (this.value == '') this.value = a
        }
    });
    $("input:text, textarea, input:password").focus(function () {
        var a = $(this).attr("tooltip");
        if (a) {
            if (this.value == a) this.value = ''
        }
    });
    $("input:text, textarea, input:password").blur(function () {
        var a = $(this).attr("tooltip");
        if (a) {
            if (this.value == '') this.value = a
        }
    });
    $("form").keypress(function (e) {
        if ((e.which && e.which == 13 && !e.shiftKey) || (e.keyCode && e.keyCode == 13 && !e.shiftKey)) {
            $(this).submit();
            return false;
        } else {
            return true;
        }
    });
    $("input:image, input:button, input:submit").click(function () {
        var a = $(this).attr("tooltip");
        $(this.form.elements).each(function () {
            if (this.type == 'text' || this.type == 'textarea' || this.type == 'password') {
                if (this.value == a && a != '') {
                    this.value = ''
                }
            }
        })
    })
})
