// Typography
Cufon.replace('#copyright')('h3');

// Activate Slideshow
$(document).ready(function(){	   
	var initial = Math.floor(Math.random()*8);					   
	$('#slideshow IMG:eq('+initial+')').addClass('active');					   				   
						   
	if($("#home").length > 0 ){setInterval( "slideSwitch()", 5000);}
});

// Slideshow
function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

// Date
function date(get) {
	var mydate=new Date()
	var year=mydate.getFullYear()
	if(get=="year"){document.write(year);}
}






