(function($) {
	$.fn.blinky = function() {
		var newOpa = $(this).css("opacity")==0 ? 1 : 0;
		$(this).animate({ opacity: newOpa }, 70, function(){
			$(this).delay(340).blinky();
			return $(this);
		});
	}
})(jQuery);

$(document).ready(function() {
	$("#cursor").blinky();
});
