$(document).ready(function () {
	if (top.location != location) {
		top.location.href = document.location.href;
	}

	$("a[rel^=#]").add($("img[rel^=#]")).overlay({expose: {color: '#111', loadSpeed: 200, opacity: 0.5}});
	
	$(".search").bind('submit', search_redirect);
	
	function search_redirect() {
		var type = (/.*\.[a-z0-9-]{1,5}$/i.test($("input[type=text]").val()) ? 'domain' : 'keyword');
		window.location = 'http://' + window.location.host + '/search/' + type + '/' + $("input[type=text]").val();
		return false;
	}
	
});
