/*
	- jQuery LinkScrubber Plugin 1.0.0.0 -	
	For documentation please visit:
	http://www.crismanich.de/jquery/linkscubber/
*/

// 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();
	});
});