// JavaScript Document


jQuery(document).ready(function() {




$('#slides').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8000



	});

$('#slidesNew').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 5000



	});

$('.bigpic').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 8000,
	  pager:  '#pager', 
	   pagerEvent: 'mouseover',
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#pager li:eq(' + idx + ') a'; 
	}



	});



$("#nav li:last-child").css({paddingRight: "0px", background:"none"});
	
  });

