$(document).ready(function() {

	//open any anchor with a rel="" in a new window
	if($("a[rel]")){
		$("a[rel]").click(function() {
			/*newWindow = window.open(this, "newWin", "toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=750,height=550")*/
			newWindow = window.open(this, "newWin", "width=750,height=550,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes")
			newWindow.focus();
			return false; //stop link from working normally
		});
	}

	if($("#success")){ $("#success").corner("30px").fadeOut(6000); }
	if($(".round")){ $(".round").corner("20px"); }

});