(function($){
	$.fn.jPush = function(settings){
		
		settings = jQuery.extend({
            bgcolor: 'transparent',	
			time: 700	
		}, settings);
		
		_initPlugin = function(element){
			
			var element = jQuery(element);
			
			var initialBg = element.css("backgroundColor");
			
			element.css("backgroundColor",settings.bgcolor);
			
			setTimeout(function(){
				element.css("backgroundColor",initialBg);
			},settings.time);
			
		}
		
		$(this).each(function(){
			_initPlugin(this);
		});
				
	}
})(jQuery);
