$(document).ready(function(){
	function trim12(str) {
       		var str=str.replace(/^\s\s*/,''),
            	ws=/\s/,
            	i=str.length;
        	while(ws.test(str.charAt(--i)));
        	return str.slice(0,i+1);
    	};
	$('.socmed').live('click', function(){
		var socMedId = $(this).attr('id'); 
		window.open('http://sct-home.public.blockshome.com/shares/new?platform='+socMedId+'&page_address='+location.href,'Social Media','width=800,height=400,location=no');
		return false;
	});
	$('.sharemail').live('click', function(){
	    	location.href='mailto:?SUBJECT='+encodeURIComponent(trim12(document.title))+'&BODY='+encodeURIComponent(trim12(document.title))+encodeURIComponent('\n<a href="'+location.href+'">'+location.href+'</a>');
	    	return false;
	});
	
	
});
