$(document).ready(function(){
	$("#newsletter-join").click(function(){
		$.post(this.form.action, $(this.form).serialize(), function(data){
			if(data){
				$.fn.colorbox({html:data, onComplete: function(){
					$("#close-confirm").click(function(){
						$.fn.colorbox.close();
						return false;
					});
				}});

				$("#newsletter-form").get(0).reset();
			}
		});

		return false;
	});
	
	/*
	$('.home-promos A IMG')
		.css('opacity',0.7)
		.mouseenter(function() {
			$(this).animate({opacity: 1},'fast');
		})
		.mouseleave(function() {
			$(this).animate({opacity: 0.7},'fast');
		});
		*/
});
