// JavaScript Document



			$("div.scrollableArea img").css({"opacity":"0.95"});





		$(function() {

			$("div#smallScroller").smoothDivScroll({mouseDownSpeedBooster: 2, scrollingSpeed: 10, autoScroll: "always", visibleHotSpots: "always", hotSpotsVisibleTime: 9, autoScrollDirection: "endlessloop", pauseAutoScroll: "mouseover"});

		});





	$("div.scrollableArea img").hover(

      function () {

        //$("div.mnu-dropdown").css({"display":"block"});

		$(this).css({"opacity":"100%", "border-bottom":"0px solid yellow", "opacity":"10"});

		

      },

	  function() {

		  $(this).css({"opacity":"0.95", "border":"0"});

	  }

    );
