jQuery(document).ready(function($){
    $('.xFloater').click(function(){
        if($('.xFloatingLeft').css('marginLeft')=="-390px"){
            $('.xFloatingLeft').animate({
                marginLeft:'0px'
            },500,'swing');
            $('.xFloater').animate({
                marginLeft:'-60px'
            },500,'swing');
        }
    });
    $('.xTopx img').click(function(){
        $('.xFloatingLeft').animate({
                marginLeft:'-390px'
            },500,'swing');
            $('.xFloater').animate({
                marginLeft:'0px'
            },500,'swing');
    });
});
