$(document).ready(
  
  function () {
		
		$('.accordian h3').click(function() {
			$('.accordian li').removeClass('selected');
			$(this).parent().addClass('selected');
		});
		
		$("div#scrollingText").smoothDivScroll({autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollInterval: 40, autoScrollStep: 2});
		// Mouse over
		$("div#scrollingText").bind("mouseover", function(){
			$("div#scrollingText").smoothDivScroll("stopAutoScroll");
		});		
		// Mouse out
		$("div#scrollingText").bind("mouseout", function(){
			$("div#scrollingText").smoothDivScroll("startAutoScroll");
		});
		
		$(".carousel .jCarouselLite").jCarouselLite({
			btnNext: ".carousel .next",
			btnPrev: ".carousel .prev"
		});
		
		$('.show-form').click(function() {
			$(this).parent().parent().find('.hidden-form').show();
		});
		$('.hidden-form .close').click(function() {
			$('.hidden-form').hide();
		});
	}
);

