/*
banner_width=705
banner_height=300
*/
$('.banner .banner-control a').click(
    function(){
        $('.banner .banner-content').animate(
                {"margin-left": (-705*$(this).parent().children(this.nodeName).index(this))+"px"},
                {easing:'swing'}
        );
        return false;
    }
);
