$(document).ready(function(){
	$("a").focus(function(){
		$(this).blur();
	})
	
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
})
