$(document).ready(function(){
$('#arama input').each(function() {
	var default_value = this.value;
	$(this).css('color', '#ccc');
	$(this).focus(function() {
		if(this.value == default_value) {
			this.value = '';
			$(this).css('color', '#333');
		}
	});
	$(this).blur(function() {
		if(this.value == '') {
			$(this).css('color', '#ccc');
			this.value = default_value;
		}
	});
});

$('#giris input').each(function() {
	var default_value = this.value;
	$(this).css('color', '#ccc');
	$(this).focus(function() {
		if(this.value == default_value) {
			this.value = '';
			$(this).css('color', '#333');
		}
	});
	$(this).blur(function() {
		if(this.value == '') {
			$(this).css('color', '#ccc');
			this.value = default_value;
		}
	});
});
});