// JavaScript Document

jQuery(document).ready(function() {


 $('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: $("#ctl00_TimeValue").text()

	});

$('#cslides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: $("#ctl00_TimeValue2").text()

	});
  
      $(".sidenav a").hover(
						   
	   function () {
      $(this).animate({paddingLeft: "28px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({paddingLeft: "18px"}, {queue:false, duration:300});
						   }				   
						   
    );
	      $(".news a").hover(
						   
	   function () {
      $(this).animate({paddingLeft: "8px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({paddingLeft: "0px"}, {queue:false, duration:300});
						   }				   
						   
    );
$(".shopcard li:nth-child(3n)").css({paddingRight: '0'});
$(".left2 li a:last").css({paddingRight: '0'});
$(".sidenav li:last").css({borderBottom: '0'});
$("#nobad li:last").css({borderBottom: '0'});
$(".news li:last").css({borderBottom: 'none'});
});






