$(document).ready(function () {

    // Logo intro
    $("#logo a").mouseenter(function () {
        $(this).stop().animate({
            "top": "-3"
        }, "fast");
    }).mouseleave(function () {
        $(this).stop().animate({
            "top": "0"
        }, "fast");
    });
	
	// Shadowbox
    Shadowbox.init({
        language: 'en',
        players: ['img', 'swf', 'flv']
    });	
	
	// Coda Slider
	$(".coda-slider").codaSlider();

    // Linked images
    $("a img").mouseenter(function () {
        $(this).stop().fadeTo("fast", .7);

    }).mouseleave(function () {
        $(this).stop().fadeTo("fast", 1);
    });
});