﻿$(function() {
    //gallery
    $("#image-gallery li a").hover(function() {
        var img = $(this).attr("href");
        $("#image-preview img").attr("src", img);
    });

    $("#image-gallery li a").click(function(e) {
        e.preventDefault();
    });

    //header flash
    $('#header').flash({
        src: 'images/flash/header_960x100_cs3.swf',
        width: 960,
        height: 100,
        wmode: 'transparent'
    }, { update: false });

    //image preload
    $('#image-gallery a').preload();
});