(function($){
$.fn.addFocusToTarget = function() {

	return this.each(function() {

			$( this ).bind( 'focus', toggleTarget ).bind( 'blur', toggleTarget );
			function toggleTarget(e){
				$( this.hash ).toggleClass( 'target' );
			}
	});
 };
})(jQuery);
