  $(document).ready(function(){
							 
$(".stripeMe tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".stripeMe tr:even").addClass("stripealt");

 

	
	$("div.projectImage").hover(
	  function(){
		/* 'this' is whichever div.rollMe you are currently
		   hovering over at this particular moment */
		$(this).find("div.textRollover").fadeIn(400);
	  },
	  function(){
		$(this).find("div.textRollover").fadeOut(400);
	  }
	);
 
  }); 
 
  
