$(document).ready(function(){
   	$('#fade').innerfade({
		speed: 2000,
		timeout: 4000,
		type: 'sequence',
		containerheight: '249px'
	});
	$('#navbar a').each(function(){
		if($(this).attr('style') != undefined){
			$('span', this).css('color', '#484551');
			var name = $(this).html();
		}	
	});
	
	$('#navbar a').hover(function(){
		$(this).css('color', '#3b1d63');
		$('span', this).css('color', '#484551');
	},function(){
		if($(this).attr('rel') == ''){
			$(this).css('color', '#7e6599');
			$('span', this).css('color', '#897c92');		
		}
	});

	//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
});
