$(document).ready(function(){
						   
// Hide Category Sections Initially					   
	$('h2 .details').hide();
	
// Category Hovers	
	$("#elementBubble").hover(function(){	
		$('#elementContainer > .details').stop(true, true).fadeIn('slow');
	}, function(){
		$('#elementContainer > .details').stop(true, true).fadeOut('slow');
	});	
	$("#siteBubble").hover(function(){	
		$('#siteContainer > .details').stop(true, true).fadeIn('slow');
	}, function(){
		$('#siteContainer > .details').stop(true, true).fadeOut('slow');
	});
	$("#miscBubble").hover(function(){	
		$('#miscContainer > .details').stop(true, true).fadeIn('slow');
	}, function(){
		$('#miscContainer > .details').stop(true, true).fadeOut('slow');
	});
	$("#newsletterBubble").hover(function(){	
		$('#newsletterContainer > .details').stop(true, true).fadeIn('slow');
	}, function(){
		$('#newsletterContainer > .details').stop(true, true).fadeOut('slow');
	});
	
// About Me Section
//	$("div.innerContainer").parent().children().hover(function(){	
//		$('#aboutMeToggle').stop(true, true).fadeIn('slow');
//	}, function(){
//		$('#aboutMeToggle').stop(true, true).fadeOut('slow');
//	});	
//	$("#aboutMeToggle").toggle(function(){	
//		$('#topSection h1').css("background-position","bottom left");
//		$('#aboutMeToggle').css("background-position","bottom left");
//		$('#aboutMe').stop(true, true).fadeIn(1000);
//	}, function(){
//		$('#aboutMe').stop(true, true).fadeOut('fast');
//		$('#aboutMeToggle').css("background-position","top left");
//		$('#quote').stop(true, true).fadeIn(1000);
//		$('#topSection h1').css("background-position","top left");
//	});	
	
// Form Stuff
	$('label').fadeIn(1000);
	$("input").focus(function(){
		 if($(this).val() === '') {
			$('label').fadeOut('fast');
		}
	});    
	$("input").blur(function() {    
		if($(this).val() === '') {
			$('label').fadeIn('slow');
		}  
	});	
	
});
