(function($){
	$.fn.randomColorize = function(options) {
        
		var options = $.extend({}, options);

        function randomColor(){
            var color = '';
            var values = ['a', 'b', 'c', 'd', 'e', 'f', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'];
            for (c = 0; c < 6; c++) {
                no = Math.floor(Math.random() * 15);
                color += values[no];
            }
            return color;
        }

		return this.each(function(){
			var self = $(this);
            var color = randomColor();
            self.css({'background-color': '#'+color});
		});
	};
})(jQuery);
