// Put all your lovely jQuery / Javascript goodies right down here.

jQuery(document).ready(function($) {
		// Add the class 'button' just like in CSS with a dot in front of it
		$('.reel,.workin,.bloggin').append('<span class="hover"></span>').each(function () {
	  		var $span = $('> span.hover', this).css('opacity', 0);
	  		$(this).hover(function () {
	    		$span.stop().fadeTo(300, 1); //Change the number 500 to change the speed of the Fade In
	 		}, function () {
	   	$span.stop().fadeTo(400, 0); //Change the number 500 to change the speed of the Fade Out
	  		});
		});
		
		


		
	});
	
	
	

	
