jQuery(document).ready(function($){
	// tabs
		$('.box_nav a').click(function() {
			
			var curChildIndex = $(this).parent().prevAll().length + 1;
			$(this).parent().parent().children('.current').removeClass('current');
			$(this).parent().addClass('current');
			$(this).parent().parent().next('.nav_container').children('.current').fadeOut('fast',function() {
				$(this).removeClass('current');
				$(this).parent().children('div:nth-child('+curChildIndex+')').fadeIn('normal',function() {
					$(this).addClass('current');
				});
			});
			return false;								
		});	
		
		$('.splash_right .cyclescreen').hover(
			function() {
		    	$(this).children('.screenoverlay').fadeIn('slow', function(){ $(this).css('display', 'block'); });
		  	},
			function () {
				$(this).children('.screenoverlay').fadeOut();
			}
			
		);
		
		$(".ginput_container input").focus(function () {
			if (this.value == 'Email') {this.value = '';}
		});
	
		
});