/**
 *----------------------------------------
 * Show the video like button
 * @param string p_sUrl URL [optional]
 *----------------------------------------
 */
var showVideoLikeButton = function() {
	if(arguments.length > 0) {
		var l_sUrl = arguments[0];
		var l_sHtml = '<fb:like colorscheme="dark" layout="button_count" show_faces="false" width="200" href="' + l_sUrl + '"></fb:like>';
		$('div#video_like').html(l_sHtml);
	}
	$('div#video_like').fadeIn('slow');
	FB.XFBML.parse(document.getElementById('video_like'));
	$('.entry_dscpn').fadeIn('fast');
};

/**
 *----------------------------------------
 * Hide the video like button
 *----------------------------------------
 */
var hideVideoLikeButton = function() {
	$('div#video_like').fadeOut('fast');
	$('.entry_dscpn').fadeOut('fast');
};


$(document).ready(function() {
	$('#body-content').append('<div id="video_like_container"><div id="video_like">&nbsp;</div></div>');
});
