// JavaScript Document

function SearchHint(){
	if(document.arama.kelime.value=='Ara...'){
		document.arama.kelime.value='';
	}
	else if(document.arama.kelime.value==''){
		document.arama.kelime.value='Ara...';
	}
}

function lokalaramayap(url){
	document.location.href = url + slug($("#lokalarama").val());
}


function slug(text)
{
    if (text != "")
    {
       text = text.toLowerCase();
	   text = text.replace(" ", "-");
    }
	return text;
}




window.onload=function(){
	$(".corner").corner("round 7px");
}