jQuery.fn.socialicons = function(settings) {
	settings = jQuery.extend({
				
			}, settings);
	
	$(this).each(function(i) {
		$(this).parent().css({cursor: 'pointer'});
		$(this).bind('click', function() {
			//window.location = $(this).attr('data');
			window.open($(this).attr('data'), '_blank', "toolbar=1, location=1, statusbar=1, menubar=1, scrollbars=1, resizable=1");
		});
	});
};//socialicons
