var newwindow;

function okno(url, width, height)
{
		newwindow = window.open(url, width ,'width=' + width + ',height=' + height + ', resizable=1,scrollbars=yes,menubar=no' );
	if (window.focus) {
		if(newwindow) 
			newwindow.focus()
	}
}

$(document).ready(function() {
    $("#fbbox").mouseover(function() {
        $("#fbbox").stop();
        $("#fbbox").animate({
            left: "0",
        }, 350);
    });
    $("#fbbox").mouseout(function() {
        $("#fbbox").stop();
        $("#fbbox").animate({
            left: "-311",
        }, 350);
    });
}); 

