var newPhoto = new Image();
newPhoto.src = 'images/template/latino_news.png';
 
$(function() {
  $("div.latino_news").hover(
  	function() {
		$(this).css('background-image', 'url(images/template/latino_news.png)');
    },
	function () {
		$(this).css('background-image', 'url(images/template/latino_news_bg.png)');
  });
});