$(document).ready(function() {
    $('.video').before('<div id="nav-video">').cycle({ 
    fx:     'fade', 
    speed:  'normal', 
    timeout: 0, 
    pager:  '#nav-video',
	after:     function() {
            $('#caption').html(this.alt);
        }
});


   $('.slideshow').before('<div id="nav-image">').cycle({ 
    fx:     'fade', 
    speed:  'normal', 
    timeout: 0, 
    pager:  '#nav-image',
	after:     function() {
            $('#caption').html(this.alt);
        }
});




$('#content_home ul li').mouseover(function() {
$(this).stop().animate({ backgroundColor: "#f5f5f5"}, 200);
$(this).find('img').stop().animate({ opacity: 0.8}, 200);
});

$('#content_home ul li').mouseout(function() {
$(this).stop().animate({ backgroundColor: "#fff"}, 200);
$(this).find('img').stop().animate({ opacity: 1.0}, 200);
});

$('#content_page ul li').find('img').animate({opacity: 0.5}, 1);

$('#content_page ul li').mouseover(function() {
$(this).stop().animate({ backgroundColor: "#f5f5f5"}, 200);
$(this).find('img').stop().animate({ opacity: 1.0}, 200);
});

$('#content_page ul li').mouseout(function() {
$(this).stop().animate({ backgroundColor: "#fff"}, 200);
$(this).find('img').stop().animate({ opacity: 0.5}, 200);
});






$("#wrap").anythingZoomer({
    	
    	   expansionSize: 30,
    	   speedMultiplier: 1.4
    	
    	});



});
