////////////////// FANCYBOX //////////////////
$(document).ready(function(){
	  
	$(".fancyboxlink").fancybox({
		'frameWidth': 430,
		'frameHeight': 400,		
		'overlayShow':	true,
		'overlayOpacity': 0.7
	});
	
});

////////////////// EXTERNAL SITES / OPEN NEW WINDOW //////////////////
$(document).ready( function() {
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    }); 
});


////////////////// IMAGE MOUSE OVER FADE //////////////////
$(document).ready(function(){
	$('#splash-flags a').hover(
		function() { $(this).animate({marginTop: "-5px"},100);},
		function() { $(this).animate({marginTop: "0px"}),3000;}
	);
});

$(document).ready(function(){
	$('#btn-rules, .btn-enter, #yamaha, #flags img').hover(
		function() { $(this).fadeTo('fast',0.8).fadeTo('fast',1);}
	);
});

