$(document).ready(function(){
	
	$("a").click(function(){
		$(this).blur();
	});
	
	$('.slideshow').cycle({
		fx: 'scrollLeft',
		speed: 1000,
		timeout: 5000
	});
	
$(function() { 	
	$('.slider').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 10000,
		next:   '#next-slide', 
    	prev:   '#prev-slide',
    	pager:  '#jump-links',
    	before: function() {  
            $('.big').html(this.title); 
        },
        pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#jump-links li:eq(' + idx + ') a'; 
    } 
	});
});
	$('#nav').animate({opacity: "0.5"}, 0);
	
	$('#nav').mouseover(function(){
		$(this).stop(true, false).animate({opacity: "1.0"}, 300);
	});
	
	$('#nav').mouseout(function(){
		$(this).stop(true, false).animate({opacity: "0.5"}, 300);
	});
	
	
});