// Social Share Fumctions
// --------------------------------------------

$(document).ready(function() {				   
	// Open the share buttons in new window
	$("ul.share-buttons li a").bind("click", function(e){
     var x = 10;
	 var y = 10;
	 var w = 900; 
	 var h = 600; 
	 s = " ";
	 s = s.concat("left=",x,",top=",y, ",width=",w,",height=",h,",toolbar=0, resizable=1");
	 newwindow = window.open(this.href,'newwin',s);
	 if (window.focus) {
		 newwindow.focus();
	 }
	 
	 switch ($(this).attr("alt")) {
       case 'share_email':
	     document.newsform.target = 'newwin';
         document.newsform.submit();
	     break;
		 
	 }
	 
	 return false;
    });

	
	
	
});


