$(document).ready(function(){
	$('#fade').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '636px'
	});
	$('#navbar a:last').css('margin-right', '0px');
	
	$('#foot_nav td:even').css('padding-right', '30px');
	
	//CONTACT BOX STUFF
		$('input[type=hidden]').each(function(){
			$(this).css('display', 'none');
		});
			
		$(':input').focus(function(){
			if($(this).val() == $(this).attr('rel')){
				$(this).val('');
			}
		}).blur(function(){
			if($(this).val() == ''){
				var atty = $(this).attr('rel');
				$(this).val(atty);
			}
		});

	//HOVER RESOURCES
	$('.resources').click(function(){
		window.open($(this).attr('rel'));
		return false;
	});
	

	$('.resources').hover(function(){
		$(this).css('background-color', '#96918d');
	},function(){
		$(this).css('background-color', '#aba6a1');
	});	
	
});
