// JavaScript Document
 $(document).ready(function(){
 	$(".homeProjectLabel").hide();
	
	$(".homeProjectImageRollover").hover(function(){return(showLabel($(this).attr('id'))); },function(){return(hideLabel($(this).attr('id'))); });
	$(".homeProjectImageRollover").corner();
 	});
 function showLabel(labelID){
	 $("#label"+labelID).slideDown();
	 return(false);
 	}
 function hideLabel(labelID){
	 $("#label"+labelID).slideUp();
	 return(false);
 	}
	function setImage(map,image){
$('#'+map).attr('src',image);

}