// JavaScript Document
$(document).ready(function(){
	
		$("#main #body").corner("bottom 12px");
		$("a").focus(function(){
  				this.blur();
		});
		$("a[rel]").overlay({expose:'#000'});
		$("a[rel]").click(function(){
				$("#overlay #contents").load($(this).attr("href"));
				$("#overlay #title").text($(this).text());
		});
});