<!--quick navigation-->
$(function () {
        if ($.browser.msie && $.browser.version < 7) return;
        
        $('#navigation li')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />').each(function () {
                    var $span = $('> span.hover', this).css('opacity', 0);
                    $(this).hover(function () {
                        // on hover
                        $span.stop().fadeTo(500, 1);
                    }, function () {
                        // off hover
                        $span.stop().fadeTo(500, 0);
                    });
                });
                
    });
	
	
<!--slideshow-->	
	function slideSwitch() {
    var $active = $('#slideshow DIV.active');

    if ( $active.length == 0 ) $active = $('#slideshow DIV:last');

    // use this to pull the divs in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow DIV:first');
    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 4000 );
});



<!--dashboard view-->
$(document).ready(function () {
    var $div = $('#slideshow-static');
    var height = $div.height();

    $div.show().css({ height : 350 });
    $('a.open').click(function () {
        if ($div.is(':visible')) {
            $div.animate({ height: 0 }, { duration: 1000, complete: function () {
                $div.hide();
            } });
        } else {
            $div.show().animate({ height : height }, { duration: 1000 });
        }
        
        return false;
    });
});



$(document).ready(function () {
	var $div = $('#slideshow-static');
    var $div = $('#slideshow');
    var height = $div.height();

    $div.show().css({ height : 350 });
    $('a.open').click(function () {
        if ($div.is(':visible')) {
            $div.animate({ height: 0 }, { duration: 1000, complete: function () {
                $div.hide();
            } });
        } else {
            $div.show().animate({ height : height }, { duration: 1000 });
        }
        
        return false;
    });
});


<!--sifr-->
if(typeof sIFR == "function"){
sIFR.replaceElement(named({sSelector:"h2", sFlashSrc:"sifr.swf",sColor:"#333333", sWmode:"transparent"}));
sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"sifr.swf",sColor:"#333333", sWmode:"transparent"}));
};



<!--PNG fix-->

$(document).ready(function(){
		$('div.header-inner').pngFix( );	
});





/*******

	***	Anchor Slider by Cedric Dugas   ***
	*** Http://www.position-absolute.com ***
	
	Never have an anchor jumping your content, slide it.

	Don't forget to put an id to your anchor !
	You can use and modify this script for any project you want, but please leave this comment as credit.
	
*****/
		


$(document).ready(function() {
	$("a.anchorLink").anchorAnimate()
});

jQuery.fn.anchorAnimate = function(settings) {

 	settings = jQuery.extend({
		speed : 1100
	}, settings);	
	
	return this.each(function(){
		var caller = this
		$(caller).click(function (event) {	
			event.preventDefault()
			var locationHref = window.location.href
			var elementClick = $(caller).attr("href")
			
			var destination = $(elementClick).offset().top;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, settings.speed, function() {
				window.location.hash = elementClick
			});
		  	return false;
		})
	})
}