$(document).ready( function() {


    var bgImages = new Array("../images/bg.jpg", "../images/bg3.jpg", "../images/bg1.jpg","../images/bg2.jpg");
    $.preloadImages("images/bg3.jpg", "../images/bg1.jpg","../images/bg2.jpg", "../images/bg.jpg");
    var buttons = $('div#bg_chooser>div').find('img');
    $('div#bg_chooser>div').children('a').each( function(i, name) {
        $(this).click( function(){
            $(buttons).attr('src','../images/bg_off.gif');
            $(this).children('img').attr('src','../images/bg_on.gif');
            $('body').css('background-image', 'url(' + bgImages[i] + ')');
        }).focus( function(){
            $(this).blur();
	});
    });
});

$.fn.cycle.defaults.speed   = 900;
$.fn.cycle.defaults.timeout = 6000;
var flashvars = {};
var params = { wmode: 'transparent' };
var attributes = {};
swfobject.embedSWF("./flash/intro.swf", "flash-intro", "545", "345", "9.0.0", "./flash/expressInstall.swf", flashvars, params, attributes);

jQuery.preloadImages = function(){
    for(var i = 0; i<arguments.length; i++){
	jQuery("<img>").attr("src", arguments[i]);
    }
}