$(document).ready(function(){
    $(".image-slider .image-container").jCarouselLite({
    btnNext: ".image-slider .next",
    btnPrev: ".image-slider .prev",
    pause: "#CarouselPlayPause",
    visible: 1,
    auto: 5000,
    speed: 500,
    btnGo:
    [".image-slider .one", ".image-slider .two",
    ".image-slider .three", ".image-slider .four",
    ".image-slider .five"]
});

			$("#CarouselPlayPause").click(function()
			{
			    if ($("#CarouselPlayPause").hasClass("paused"))
			    {
			        $(this).html("<img src='images/slider-button-play.gif' alt='play' />");
			    }
			    else
			    {
			        $(this).html("<img src='images/slider-button-pause.gif' alt='pause' />");
			    }
			});


});