$(document).ready(function(){
	$('#country').linkToStates('#state');
	$('#shipping_country').linkToStates('#shipping_state');
	
	$('.radio').click(function(){
		$('.radio').removeClass('selected');
		$(this).addClass('selected');
		$('#' + $(this).attr('key')).attr('value', $(this).attr('value') );
		if( $(this).attr('value') == 'event' ) {
			$('.wedding_only').slideUp('slow');
			$('.event_only').slideDown('slow');
		} else {
			$('.event_only').slideUp('slow');
			$('.wedding_only').slideDown('slow');
		}
	});
	$('.checkbox').toggle(function(){
		$(this).addClass('checked');
		$('#' + $(this).attr('rel')).val('true');
		},
		function(){
			$(this).removeClass('checked');
			$('#' + $(this).attr('rel')).val('false');
		}
	);
	$('.radio[value=event]').click();
	$('.checkbox_list a').toggle(function()
		{
			$(this).addClass('checked');
			interests = '';
			$(".checkbox_list[rel='" + $(this).attr('rel') + "'].checked").each(function(){
				interest = '[' + $(this).html() + ']';
				if(interests) {
					interests += ', ' + interest;
				} else {
					interests = interest;
				}
			});
			$('#' + $(this).attr('rel')).attr('value', interests);
		},
		function(){
			$(this).removeClass('checked');
			interests = '';
			$(".checkbox_list[rel='" + $(this).attr('rel') + "'].checked").each(function(){
				interest = '[' + $(this).html() + ']';
				if(interests) {
					interests += ', ' + interest;
				} else {
					interests = interest;
				}
			});
			$('#' + $(this).attr('rel')).attr('value', interests);
		}
	);	
});
