$(document).ready(function(){
        $("#button1").click(function() {
                $(".widearea").animate({
                        marginLeft: "0px"
                }, 500);
        });
        $("#button2").click(function() {
                $(".widearea").animate({
                        marginLeft: "-960px"
                }, 500);
        });
        $("#button3").click(function() {
                $(".widearea").animate({
                        marginLeft: "-1920px"
                }, 500);
        });
        $("#button4").click(function() {
                $(".widearea").animate({
                        marginLeft: "-2880px"
                }, 500);
        });        
        $("#button5").click(function() {
                $(".widearea").animate({
                        marginLeft: "-3840px"
                }, 500);
        });  
        $("#next1").click(function() {
                $(".widearea").animate({
                        marginLeft: "0px"
                }, 500);
        });
        $("#next2").click(function() {
                $(".widearea").animate({
                        marginLeft: "-960px"
                }, 500);
        });
        $("#next3").click(function() {
                $(".widearea").animate({
                        marginLeft: "-1920px"
                }, 500);
        });
        $("#next4").click(function() {
                $(".widearea").animate({
                        marginLeft: "-2880px"
                }, 500);
        });        
        $("#next5").click(function() {
                $(".widearea").animate({
                        marginLeft: "-3840px"
                }, 500);
        }); 
        $("#prev1").click(function() {
                $(".widearea").animate({
                        marginLeft: "0px"
                }, 500);
        });
        $("#prev2").click(function() {
                $(".widearea").animate({
                        marginLeft: "-960px"
                }, 500);
        });
        $("#prev3").click(function() {
                $(".widearea").animate({
                        marginLeft: "-1920px"
                }, 500);
        });
        $("#prev4").click(function() {
                $(".widearea").animate({
                        marginLeft: "-2880px"
                }, 500);
        });        
        $("#prev5").click(function() {
                $(".widearea").animate({
                        marginLeft: "-3840px"
                }, 500);
        });                                                         
});