/* NIVO SLIDER */
$(window).load(function() {
	$('#sliderContainer').nivoSlider({
		effect:'fade', //Specify sets like: 'fold,fade,sliceDown'
		animSpeed:800, //Slide transition speed
		pauseTime:4000,
		directionNav:false, //Next & Prev
		controlNav:false, //1,2,3...
		pauseOnHover:true //Stop animation while hovering
	});
});

/* DROP DOWN NAV */
// Javascript originally by Patrick Griffiths and Dan Webb.
// http://htmldog.com/articles/suckerfish/dropdowns/
sfHover = function() {
   var sfEls = document.getElementById("mainNav").getElementsByTagName("li");
   for (var i=0; i<sfEls.length; i++) {
      sfEls[i].onmouseover=function() {
         this.className+=" hover";
      }
      sfEls[i].onmouseout=function() {
         this.className=this.className.replace(new RegExp(" hover\\b"), "");
      }
   }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
























