$(function(){
    "use strict";
    $("nav ul li").hover(
        function(){ $(this).addClass('hover');},
        function(){ $(this).removeClass('hover');}
    );
    
    $(".blank").click(function(e){
        var link = $(this).attr('href');
        window.open(link);
        e.preventDefault();
    });
    $("ul.sf-menu").superfish({autoArrows: false}); 
    
     $('.logo').flash({
            'src':'/swfs/GC-logo.swf',
            'width':'100',
            'height':'100',
            'wmode': 'transparent',
            'allowfullscreen':'false',
            'allowscriptaccess':'always'
        });

	$('#slideshow').innerfade({speed:'slow',  timeout:7000}); 
	
}); // on ready
