// IE6 dropdown Nav
$(document).ready(iehover);function iehover(){if($.browser.msie){$("#nav li").hover(function(){$(this).addClass("hover");},function(){$(this).removeClass("hover");})};}
$(document).ready(iehoverlc);function iehoverlc(){if($.browser.msie){$("#navlc li").hover(function(){$(this).addClass("hover");},function(){$(this).removeClass("hover");})};}


// IE6 dropdown Nav
function iehover()
{
	if($.browser.msie)
	{
		$("#nav li").hover(
			function()
			{
				$(this).addClass("hover");
				$("select").css("display", "none");
			},
			function()
			{
				$(this).removeClass("hover");
				$("select").css("display", "block");
			}
		);
	}
}


function iehoverlc()
{
	if($.browser.msie)
	{
		$("#navlc li").hover(
			function()
			{
				$(this).addClass("hover");
				$("select").css("display", "none");
			},
			function()
			{
				$(this).removeClass("hover");
				$("select").css("display", "block");
			}
		);
	}
		
}


$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
  $('#slickbox').hide();
 // shows the slickbox on clicking the noted link
  $('a#slick-show').click(function() {
 $('#slickbox').show();
 return false;
  });
 // hides the slickbox on clicking the noted link
  $('a#slick-hide').click(function() {
 $('#slickbox').hide();
 return false;
  });
 // toggles the slickbox on clicking the noted link
  $('a#slick-toggle').click(function() {
 $('#slickbox').toggle(200);
 return false;
  });
});

