// show billboard info on hover
$(function() {
	infoFade();
});

function infoFade() {	
	$('.picture a').hover(
		function () {
        	$(this).find('strong').fadeIn(150);
        	},
        function () {
        	$(this).find('strong').fadeOut(150);
      	}
	);
}
