$(document).ready(function(){
	$("#socialbookmarkscript_div_link").remove();			   
	if (typeof facebook_url == "undefined" || facebook_url == "") {
		facebook_url = window.location;
	}
	var newtop = '25px';
	var newheight = 100;
	if (facebook_vcenter==true) {
		newtop = ($(window).height() - newheight)/2  + 'px';
	}
	if (facebook_position=='right') {
		$("#facebooksidepanel_div").css({
										   position:'fixed',
										   top:newtop,
										   right:'-91px',
										   width:'120px',
										   height:newheight+'px',
										   display:'block',
										   cursor:'pointer',
										   'z-index':'100',
										   'background-color':'transparent',
										   'background-image': 'url(images/facebook.gif)'
										   });	
		$("#facebooksidepanel_div").mouseenter(function(){
		  $("#facebooksidepanel_div").animate({ right:'0px' }, 150 );
		}).mouseleave(function(){
		  $("#facebooksidepanel_div").animate({ right:'-91px' }, 150 );
		});
		$('<iframe />', {
			name:	'socialbookmarkscript_facebook',
			id:		'socialbookmarkscript_facebook',
			src:	'http://www.facebook.com/plugins/like.php?href='+facebook_url+'&layout=box_count&show_faces=false&width=100&action=like&font=arial',
			style:	'overflow:hidden; border:none; borderwidth:0px; width:77px; padding:0; margin:0; height:62px; margin-top:18px; margin-left:35px;',
			scrolling: 'no',
			border: 0,
			frameborder: 0
		}).appendTo($("#facebooksidepanel_div"));		
	} else {
		$("#facebooksidepanel_div").css({
										   position:'fixed',
										   top:newtop,
										   left:'-91px',
										   width:'120px',
										   height:newheight+'px',
										   display:'block',
										   cursor:'pointer',
										   'z-index':'100',
										   'background-color':'transparent',
										   'background-image': 'url(images/facebook.gif)'
										   });	
		$("#facebooksidepanel_div").mouseenter(function(){
		  $("#facebooksidepanel_div").animate({ left:'0px' }, 150 );
		}).mouseleave(function(){
		  $("#facebooksidepanel_div").animate({ left:'-91px' }, 150 );
		});	
		$('<iframe />', {
			name:	'socialbookmarkscript_facebook',
			id:		'socialbookmarkscript_facebook',
			src:	'http://www.facebook.com/plugins/like.php?href='+facebook_url+'&layout=box_count&show_faces=false&width=100&action=like&font=arial',
			style:	'overflow:hidden; border:none; borderwidth:0px; width:77px; padding:0; margin:0; height:62px; margin-top:18px; margin-left:5px;',
			scrolling: 'no',
			border: 0,
			frameborder: 0
		}).appendTo($("#facebooksidepanel_div"));		
	}
});
