$(document).ready(function() {

			
				

$('.headimg-mask') 
.after('<div id="pager">') 
.cycle({ 
    fx:     'fade', 
    speed:  '2000', 
    timeout: 7000, 
    pager:  '#pager' 
});

$('ul.nav a').hover(function() {
				$(this).animate({marginLeft: 2}, 100);
				
				}, function() {
				$(this).animate({marginLeft: 0}, 100);
				
				}
				
				
				
				);

$('a.lightbox').lightBox();
$('a.lightbox2').lightBox();


});