/*
	- jQuery powered LinkScrubber  Corrects Dotted Lines Around Firefox-	
	By Ryan Hickman
*/

// when the document is loaded
$(document).ready(function(){
	// search all anchors and apply an on focus event					   		
	$("a").bind("focus",function(){
		// if the browser supports the blur method, trigger it when the anchor is focused
		if(this.blur)this.blur();
	});
});
