$(function(){
	$(document).pngFix();
	$('#rsvp_location_country').change(function(){
		if($(this).val() == 'US')
		{
			$(this).parent('span').siblings('span').find('label').html('Postal Code').end();
		}
		else
		{
			$(this).parent('span').siblings('span').find('label').html('City').end();
		}
	});
	
	$('#wrap').hide().fadeIn(1500);
	$('#details, #form').hide();

	$('#info').append('<p class="buttons clearfix" style="position:relative"><a href="#show_details" class="show_details_button" onclick="return false">More Details</a><a href="#show_form" class="show_form_button" onclick="return false">RSVP NOW</a><a href="http://livelink.268generation.com/test.php" class="test_connection_button" target="_blank">Test Your Connection</a></p>');

	$('.show_details_button').click(function(){
		$('#details').slideDown(1000);
		$(this).fadeOut(1000);
		$('.show_form_button').animate({marginLeft:"96px"}, 1500);
	});
	
	$('.show_form_button').click(function(){
		$('#info').fadeOut(500, function(){
			$('#form').fadeIn(1000);
		});
	});
	
	$('.checkbox').fancyCheckbox();
	$('#promo_address').hide();
	
	$('a.test_connection_button').popupWindow({ 
		height:675, 
		width:800,
		centerScreen:1,
	});
})

$.fn.fancyCheckbox = function()
{
	$this = $(this);
	$label = $('label', $this);
	$checkbox = $('input:checkbox', $this);
	
	$this.addClass('fancyCheckbox');
/* 			$label.addClass('checked'); */
	
	$checkbox.click(function(){

		if($(this).is(':checked'))
		{
			$label.addClass('checked');
			$('#promo_address').slideDown();
		}
		else
		{
			$label.removeClass('checked');
			$('#promo_address').slideUp();
		}
	});
}