// JavaScript Document


jQuery(document).ready(function() {
								
$('#slider').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8000



	});

$('#slideimage').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8000,
	pager:'#pager',
	pagerEvent: 'mouseover',
	pauseOnPagerHover: true
	});  
  
  
    $("#sidenav a").hover(
						   
	   function () {
      $(this).animate({paddingLeft: "15px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({paddingLeft: "0px"}, {queue:false, duration:300});
						   }				   
						   
    );
	
	
	$(".adjustcontainer .unit:nth-child(odd)").css("padding-left", "0px");
	$(".adjustcontainer .unit:nth-child(odd)").css("clear", "left");
	$getwidth = $(".counter ul").width();
	
	$(".counter ul").hide();
	$(".counter ul").css({"width":$getwidth, "margin":"0 auto", "float":"none"});
	
	$(".counter ul").fadeIn();

	
  });

