$(document).ready(function(){
	$(document).pngFix(); // Fixes IE's crappy inability to display PNG's properly

  $("#content-slider").slider({
    animate: true,
    handle: ".content-slider-handle",
    change: handleSliderChange,
    slide: handleSliderSlide
  });
  
  $('a, img').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false
	});
});

function DivSlide(thediv) {
	if (document.getElementById(thediv).style.display == "none") {
		$('#'+thediv+'').show("normal");
	}
	else {
		$('#'+thediv+'').hide("normal");
	}
}

function handleSliderChange(e, ui)
{
  var maxScroll = $("#content-scroll").attr("scrollHeight") - $("#content-scroll").width();
  $("#content-scroll").animate({scrollTop: ui.value * (maxScroll / 100) }, 1000);
}

function handleSliderSlide(e, ui)
{
  var maxScroll = $("#content-scroll").attr("scrollHeight") - $("#content-scroll").width();
  $("#content-scroll").attr({scrollTop: ui.value * (maxScroll / 100) });
}