$(document).ready(function(){
  $('.slideshow').cycle({
		fx: 'fade', //,scrollUp,scrollLeft,scrollVert',
		delay: 0,
    timeout: 5000
	});

  $(".jCarouselLite").jCarouselLite({
      btnNext: ".rj",
      btnPrev: ".lj",
      visible: 5
  });

  $(".med-img").click(function() {
    //var show = $(this).attr('show');
     
  });

  $(".newsItem").hover(
      function () {
        var show = $(this).attr('show');
        $("#bigImgNews").attr('src', show);
        $(this).css("background","url(images/news-over-bg.gif) repeat-y center top");
      }, 
      function () {
        $(this).css("background","none");
      }
  );   
  		
});
