jQuery(document).ready(function() {
    jQuery('.sidebanner').mouseover(function () {
		thisbox = jQuery(this).next('.sidebannerBox');
		thisbox.animate({
width:'show'
//marginLeft: parseInt(thisbox.css('marginLeft'),10) == 0 ? thisbox.outerWidth() : 0
//right: 0
		});
    }).mouseout(function () {
//marginLeft: thisbox.outerWidth();
//right: -700
		thisbox.animate({width:'hide'});
    });
});

