/*
	Any site-specific scripts you might have.
	Note that <html> innately gets a class of "no-js".
	This is to allow you to react to non-JS users.
	Recommend removing that and adding "js" as one of the first things your script does.
	Note that if you are using Modernizr, it already does this for you. :-)
*/

 $(document).ready(function(){
   
	$("#scroller").simplyScroll({
			autoMode: 'loop',
			pauseOnHover: false,
			frameRate: 74,
			speed: 3
	});
	
	
	$("").hover(function(){$(this).parent().find(".sub-menu").hide();$(this).parent().find(".sub-menu").hide();});

$(".ie8 li.menu-item").hover(
  function () {
     $(this).find(".sub-menu").show();
  }, 
  function () {
    $(this).find(".sub-menu").hide();
  }
);

   
 });
