(function($) {
	$.randombg = {
		defaults: {directory: "http://www.AirForce.gov.au/images/layout/backgrounds/", howmany: 8}
	}
    $.fn.extend({
        randombg:function(config) {
            var config = $.extend({}, $.randombg.defaults, config);
			return this.each(function() {
		
				var directory = config.directory, howmany = config.howmany;

				var which = Math.floor(Math.random()*howmany)+1;
				$(this).css({"background": "#060e1b url(" + directory + which + ".jpg) fixed center no-repeat"});
			  
            })
        }
    })
})(jQuery);