// Initialise the Superfish Menu (http://users.tpg.com.au/j_birch/plugins/superfish/)
$(document).ready(function() { 
        $('#primary-nav ul').superfish({ 
            delay: 200,
            animation: {opacity:'show', height:'show'},
            speed: 'fast',
            autoArrows: false,
            dropShadows: false
        }); 
    });

// Create the Featured Slider
$(document).ready(function() {
    $('#featured')
    .before('<div id="featured-nav">')
    .cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:    500, 
   		timeout:  6000,
   		pause:  1,
   		pager:  '#featured-nav'
	});
});

// opacity changes
$(document).ready(function() { 
		$(".img-link img").css({
				opacity: 1
			});
		$(".img-link img").hover(function() {
			$(this).stop().animate({
				opacity: 0.6
				}, 300);
			},function() {
			$(this).stop().animate({
				opacity: 1
				}, 500);
		});
	});
