// Javascript!
$(function() {
	/*
  	 Herhangi bir taga verilen HREF özniteliğini algılayar
     ve eğer değer boş değilse link olarak işlevsellik kazanmasını
     sağlar.
	*/	
	
	$("*").click(function() {
		if($(this).attr('href') != undefined) {
			location.href = $(this).attr('href');
		}
		if($(this).attr('link') != undefined) {
			window.open($(this).attr('link'), null,"status=1,toolbar=1,location=1,menubar=1,directories=1,resizable=1,scrollbars=1");
		}
	});
	
	$("input").each(function(a,d) {
		if(($(d).val() == "") || ($(d).val() == undefined)) {
			if($(d).attr("auto") != "") {
				$(d).val($(d).attr("auto"));
			}
		}
	}).focus(function() {
		if($(this).val() == $(this).attr("auto")) {
			$(this).val("");
		}
	}).blur(function() {
		if($(this).val() == "") {
			$(this).val($(this).attr("auto"));
		}
	});
	
	$(".menu ul li a").hover(function() {
		$(this).stop().animate({
			"color":"#FFF"
		});
	},function() {
		$(this).stop().animate({
			"color":"#cdcdcd"
		});	
	});
	
});
