$(document).ready(function(){
	$('#image, #splash_logo').hover(function() {
		$('.entersite').stop().animate({
			opacity: '1.0'
 		}, 500);
	}, function() {
		$('.entersite').stop().animate({
			opacity: '0.0'
 		}, 500);
	});
	
	$('.link').click(function() {
		new_window = window.open($(this).attr('href'),'site','top=0,left=0,height=1080,width=2050,toolbar=0,status=0,menubar=0,statusbar=0,resizable=0,scrollbars=1,location=0');
		if (window.focus) { new_window.focus(); }
		return false;
	});
	
	$(function(){
		$('#slider img:gt(0)').hide();
		setInterval(function(){$('#slider :first-child').fadeOut().next('img').fadeIn().end().appendTo('#slider');}, 3000);
	});
	
	// disable right click
	$(document).bind('contextmenu', function(e){
		return false;		
	});
});

