var JQ = jQuery;

JQ(document).ready(function() {
	JQ('.mailto').each(function(){
		e = JQ(this).text().replace('<span>','').replace('</span>','');
		s = JQ(this).attr("rel");
		this.href = 'mailto:' + e + '?subject=' + s;
		JQ(this).text(e);
	});
	JQ("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'facebook'
	});		
	JQ("#searchform").submit(function(){
		if (JQ("#s").val() == "") { 
				location.href = "/search/";
				return false;
		}
	});
});
