/* thumbnail rollover javascript */

$(document).ready(function() {
	
	$(".thumblink").hover(function(){
	
	  // grab the div's id	
	  var id = $(this).attr("id");
	
	  // hide the caption	
	  $("#"+id+" p").hide();
	
	  // over
	  $("#"+id+" p").slideDown("fast");
	},function(){
	  //out
	  var id = $(this).attr("id");
	  $("#"+id+" p").slideUp("fast");
	});
});
