

/*	James

	File:		Share JS
	Author:		James Brannon

	-------------------------------------------------------------------------------------------------------------------- */
	
	function tweetThis( vals ){
		var url = vals[0],
			message = vals[1],
			hash = vals[2],
			status = message+' - '+url+' '+hash;
			
			//- share on Twitter
			window.open( 'http://twitter.com/intent/tweet?text='+status.urlencode(),'sharer','toolbar=0,status=0,width=626,height=436' );
	}
	
	function wallThis( vals ){
		var url = vals[0].urlencode(),
			title = vals[1].urlencode();

			//- share on Facebook
			window.open('http://www.facebook.com/sharer.php?u='+url+'&t='+title,'sharer','toolbar=0,status=0,width=626,height=436');
	}
