// JavaScript Document
$(document).ready(function(){
 /* ie modify height */
 jQuery.each(jQuery.browser, function(i) {
  if($.browser.msie){
   var h = $("#news").height();
   $("#public, #press").css({"height":h+"px"});
  }
 });
 $(function() {$('#leftMenu ul').tabs();});
 
 var width = $("#albumList").width();
 sp = (width-930)/2;
 $("#albumList .rasp").each(function(){$(this).width(sp);});
});

function instrInit() {
 $('#instrument ul').hide();
 $('#instrument li a').click(function() {
  var checkElement = $(this).next();
  if((checkElement.is('ul')) && (checkElement.is(':visible'))) {checkElement.slideUp('normal');return false;}
  if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
   $('#instrument ul:visible').slideUp('normal');
   checkElement.slideDown('normal');
   return false;
  }
 });
}
