/***************************************************
		TOGGLE JAVASCRIPT
***************************************************/
$(document).ready(function() { 
$(".desc").hide();  
$("h3.open-close").click(function(){  
  if ($(this).is(".current"))
  {
   $(this).removeClass("current");
   $(this).next(".desc").slideUp(500);
  }
  else
  {
	  /* kh remove this function so the bar would not automatically scrol down
   $(".desc").slideUp(400); , I also removed "current" from the removeClass below*/
   $("h3.open-close").removeClass("");
  
   $(this).addClass("current");
   $(this).next(".desc").slideDown(500);
  }
 });
});




/***************************************************
		TOGGLE SLIDESHOW
***************************************************/
$(document).ready(function() {
	$("#slideshow-holder").show();
	$("#close-tab").click(function() {
		$("#slideshow-holder").animate({height: "toggle"}, 400);
	});
});





/***************************************************
	   JQUERYSLIDEMENU EASING - MENU
***************************************************/
jQuery(document).ready(function() {		
		jQuery("h3 a").hover(function() {
			jQuery(this).find("span").stop().animate({ 
				marginLeft: "10" 
			}, 200);
		} , function() { 
			jQuery(this).find("span").stop().animate({
				marginLeft: "0" 
			}, 200);
		});
});


