function embed_object(str_src,w,h,bg,div)
{
		 $('#'+div).flash(
		 { 
			 src: str_src,
			 width: w,
			 height: h,
			 bgcolor: bg,
			 allowscriptaccess: "always"},
			{ version: 8 }
		);
}
/*FB async Loaders*/
function fbTools ()
	{
	$.fbTool({
		appId  : '',
		status : true, // check login status
		cookie : true, // enable cookies to allow the server to access the session
		xfbml  : false  // parse XFBML);
	});
	$('#fbLikeBox').fbTool('likeBox', {
		style : 'overflow: hidden; width: 300px; height: 300px;border:none;background-color:white;',
		source : 'http://www.facebook.com/plugins/likebox.php?href=http://www.facebook.com/mediafax.ro&width=300&connections=10&stream=false&header=false&height=300',
		delay : 2000
	});
}
$(document).ready(function() {
	fbTools();
});

