$(document).ready(function(){
$('#offerbox1, #offerbox2, #offerbox3').css({'opacity':'0.5'});
	$('#offerbox1, #offerbox2, #offerbox3').mouseover(function(){
		$(this).animate({
			opacity: 1,
			}, 200, function() {
		});
	});
	$('#offerbox1, #offerbox2, #offerbox3').mouseleave(function(){
		$(this).animate({
			opacity: 0.5,
			}, 200, function() {
		});
	});			
});
