/* Prevents IE6 Background Flicker */

try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}



/* Opacity Rollover */

$(document).ready(function () {
  $(".opacify").hover(
	function () {
	  $(this).fadeTo("fast", 0.7);
	},
	function () {
	  $(this).fadeTo("normal", 1);
	}
  );
});


/* Homepage Slideshow */
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade'
	});
});


$(document).ready(function() {
      
	// Setup the nav drop-downs
	$('#nav').nmcDropDown({
    show: {height: 'show', opacity: 'show'}
	});

});