$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".latest_img-home").css("opacity","0.0");
		
// ON MOUSE OVER
$(".latest_img-home").hover(function () {
										  
// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 2.0
}, "slow");
},
		
// ON MOUSE OUT
function () {
			
// SET OPACITY BACK TO 50%
$(this).stop().animate({
opacity: 0.0
}, "slow");
});
});

//BANNER
$(document).ready(function() {
		$('#coin-slider').coinslider({ hoverPause: false, width: 954, height:320, delay: 4000 });
	});
