jQuery(document).ready(function($) {
    var current = $(".current_page_item").css('background-image').replace(/\.png/,'_current.png');
    $(".current_page_item").css('background-image',current);
    $.preloadCssImages();
    $(".page_item:not(.current_page_item)").hover(function() {
        var hover = $(this).css('background-image').replace(/\.png/,'_u.png');
        $(this).find("a").css('background-image',hover);
    },function() {
        $(this).find("a").css('background-image','none');
    });
});

jQuery(document).ready(function($) {
    $('#flickr-slideshow').slideshow({
        timeout: 10000,
	fadetime: 2000,
	type: 'random'
    });
});