$(document).ready(function(){
	$("div.cap").bind("mouseover", function(e){
		$('#caption'+$(this).attr("id")).show();
    });
	$("div.cap").bind("mouseout", function(e){
		$('#caption'+$(this).attr("id")).hide();
    });
});
