function likeThis(postId) {
	if (postId != '') {
		jQuery('#iLikeThis-'+postId+' .counter').text('...');
		
		jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
			{ id: postId },
			function(data){
				jQuery('#iLikeThis-'+postId+' .counter').text(data);
			});
	}
}

function playSound(soundfile) {
 document.getElementById("high-five").innerHTML=
 "<embed src=\"http://thewerehaus.com/high-five.mp3\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
}