/*
RandomImage Plugin


*/

(function($){
	$.fn.randimg = function(e){
		var e = $.extend({
			
		},e);
		
		return this.each(function(){
			var num = Math.floor(Math.random()*parseInt($(this).find('img').size()));
			$(this).find('img').hide().eq(num).show();
		});
	};
	
	
})(jQuery);
