﻿//image player
$(document).ready(function () {
    //init
    $('#hp img').each(function (index) {
        $("#toolbar").append("<div></div>");
    });
    $('#toolbar div').attr("class", "s");
    $('#toolbar div:last').attr("class", "l");
    $('#toolbar div').click(function () {
        var i = $("#toolbar div").index(this);
        //image
        $('#hp img').hide();
        $('#hp img:eq(' + i + ')').fadeIn('slow');

        //swith
        $('#toolbar div').attr("class", "s");
        $(this).attr("class", "l");
    });
})

//mp3player

