(function($){

	jQuery.fn.cukerHeader = function() {
        $.each(this, function(k, v) {
            var regex = /[\(\)\!\@\#\$\%\^\*\=\+\,\.\<\>\?\;\{\}\'\"\\\|\/\&\s]/g;
	        var sec = $(v).text().replace(regex, '-').replace('.', '').toLowerCase();
	        $(this).attr({'id': 'header-' + sec}).css({'text-indent':'-9999px'});
	    });
		return this;
	}

})(jQuery);



