(function($){
    $.fn.extend({
        tonyseatonfeature: function(options) {
			var defaults = {};
            var options = $.extend(defaults, options);
            return this.each(function(){
                var obj = $(this);
				var hoverID=$(obj).attr('id');
				var featureImage='';
				if(hoverID=='community'){
					featureImage='<a title="The Offices of Tony Seaton" style=" background-image:url(featured/1community.jpg); background-repeat:no-repeat" href="community.php" class="featured-image"></a>';
				}
				else if(hoverID=='personal_injury'){
					featureImage='<a title="The Offices of Tony Seaton" style=" background-image:url(featured/3personal_injury.jpg); background-repeat:no-repeat" href="personal_injury.php" class="featured-image"></a>';
				}
				else if(hoverID=='social_security'){
					featureImage='<a title="The Offices of Tony Seaton" style=" background-image:url(featured/2social_security.jpg); background-repeat:no-repeat" href="social_security.php" class="featured-image"></a>';
				}
				else if(hoverID=='worker_comp'){
					featureImage='<a title="The Offices of Tony Seaton" style=" background-image:url(featured/4workers_comp.jpg); background-repeat:no-repeat" href="workers_comp.php" class="featured-image"></a>';
				}
				$('#currentProject').html(featureImage);
            });
        }
    });
})(jQuery);
