$(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']
    });	

    // Linked images
    $("a img").mouseenter(function () {
        $(this).stop().fadeTo("fast", .7);

    }).mouseleave(function () {
        $(this).stop().fadeTo("fast", 1);
    });

    // Lazy load
    $("img").lazyload({
        placeholder: "/img/work/load_thumb.png",
        effect: "fadeIn",
        threshold: -100
    });
});