﻿$().ready(function(){

    $.preloadImages("/_img/hero/hero_1.jpg", "/_img/hero/hero_2.jpg", "/_img/hero/hero_3.jpg");
    
    $('#hero').cycle({
        fx:         'fade',
        speed:      500,
        timeout:    6000,
        next:       '#hero'
    });
    
    /* Fix transparent pngs in IE6 */
    $('#content').supersleight();
    
    /* Superfish menu */
    $('ul.sf-menu').superfish({speed:0});
});

jQuery.preloadImages = function() {
    for(var i = 0; i<arguments.length; i++) {
        jQuery("<img>").attr("src", arguments[i]);
    }
};