$(document).ready(function() {

    // Add class to current links (todo: check in ie)
    $(".menu a").each(function() {
        if(this.href == window.location.href.split("#")[0]) {
            $(this).addClass("current");
        }
    });





    $('#flash-notice a').click(function(){
        $('#flash-notice').hide('slide');
    });


		  	$('h1').sifr({
	    		font: '/javascripts/jquery-sifr/Dirty_Headline.swf',
	    		version: 2,
	//    		fontSize: '100',
	    		color: '#247D9F',
					zoom: 1.2,
					width: 500
	    //		build: 'beta2'
	    	});

    	$('.sifr').sifr({
    		font: '/javascripts/jquery-sifr/tradegothic.swf',
    		version: 2,
//    		fontSize: '100',
    		color: '#247D9F'
    //		build: 'beta2'
    	});

	    	$('.sifr_dark').sifr({
	    		font: '/javascripts/jquery-sifr/tradegothic.swf',
	    		version: 2,
forceSingleLine: true,
preventWrap: true,
//	    		fontSize: '100',
					// fontWeight: 'bold',
					// zoom: 1.3,
	    		color: '#404B99'
	    //		build: 'beta2'
	    	});





    
});


