$(function(){
    soundManager.url = 'scripts/soundmanager2/swf/';
    threeSixtyPlayer.config = {
      loadRingColor: '#ccc', // amount of sound which has loaded
      playRingColor: '#e29a45', // amount of sound which has played
      backgroundRingColor: '#eee', // "default" color shown underneath everything else
      imageRoot: 'scripts/soundmanager2/' // path to prepend for empty.gif used for play/pause button
    }

    $("#search-btn").bind("click",function(){
        var search = $("#search-box").val();
        var type = $("#search_type").val();
        window.location.href="index.php?search="+search+"&sagatype="+type;
    });
    $("#search-box").bind('keypress', function(e) {
        if(e.keyCode==13){
            var search = $("#search-box").val();
            var type = $("#search_type").val();
            window.location.href="index.php?search="+search+"&sagatype="+type;
        }
    });
});
