function cancel_anims()
{
	 $('#slideshow').cycle('resume');

}    
$(document).ready(function(){    
	$('#banner').cycle({ 	
	    fx:     'fade', 
		speed:  'fast' 
		});
	$('#slideshow')	.before('<div id="nav">')  
		.cycle({ 	
	    fx:     'scrollHorz', 
	    speed:  'fast',  
	    prev:   '#prev', 
	    next:   '#next', 
	    // after:   onAfter,
	    pager:  '#nav',  
	    timeout: 6000,
	 	cleartype:true,
		cleartypeNoBg:  true
		});    
		
// function onAfter(curr, next, opts) {
//     var index = $(this).parent().children().index(this);
//     $('#prev')[index == 0 ? 'hide' : 'show']();
//     $('#next')[index == opts.slideCount - 1 ? 'hide' : 'show']();
// }  

$('.nav.main a')
	.css( {backgroundPosition: "0 -100%"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:300, complete:function(){
			$(this).css({backgroundPosition: "0 -100%"})
		}})
})

});
