jQuery(function($){
	var changeShareDropDown = function() {
		var show = false;
		if ($(this) != null && $(this).find('.toggleShareList').attr('id') == '') { var show = true; }
		$('.toggleShareList').attr('id', '');
		$('.shareList').hide();
		if (show) { $(this).find('.toggleShareList').attr('id', 'shareSelected'); $(this).siblings('.shareList').show(); }
	}
	$('.shareList').hide();
	var preventDefaultAction = function(e) {
		e.cancelBubble = true;
		e.returnValue = false;
		if (e.stopPropagation) { e.stopPropagation(); e.preventDefault(); }
	}
	$('.shareList > li > a').each(function() { $(this).attr('target', '_blank'); });
	$('.share').click(function(e) {
		if(!e) var e = window.event;
		preventDefaultAction(e);
		changeShareDropDown.call(this);
	});
	$(document).click(function(e) { changeShareDropDown.call(null); });
});
