$(document).ready(function(){
   	$('#fade').innerfade({
		speed: 2000,
		timeout: 3500,
		type: 'random',
		containerheight: '230px'
	});
	$('#inner a:first').css({'border-top': '1px solid #d4d7da'});

    $('tr:even').css('background-color', '#e0e1db');

	//CONTACT FORMS
		$('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);
			}
		});
	//CONTACT FORMS
});
