$(document).ready(function(){

	/* Drop down menu */
	$('ul.nav > li').hover(function(){
		$('ul', this).stop(true, true).slideDown(250);
	},function(){
		$('ul', this).stop(true, true).slideUp(250);
	});

	/* Selecting Package */
	$('#conference-registration input[name="packages[]"]').click(function(){
		if($(this).val() == 'early-bird' || $(this).val() == 'standard'){
			$('#conference-registration input[name="packages[]"]').each(function(){
				if($(this).val() != 'early-bird' && $(this).val() != 'standard'){
					$(this).removeAttr('checked');
				}
			});
		}
		$('#conference-registration input[name="packages[]"]').each(function(){
			if($(this).val() != 'early-bird' && $(this).val() != 'standard'){
				if($('#conference-registration input[value="early-bird"]').is(':checked') || $('#conference-registration input[value="standard"]').is(':checked')){
					$(this).attr('disabled', 'disabled');
					$(this).parent().parent().children('td.title').css('text-decoration', 'line-through');
				}else{
					$(this).removeAttr('disabled');
					$(this).parent().parent().children('td.title').css('text-decoration', 'none');
				}
			}
		});
	});

	/* Partners */
	$('#conference-registration input[name="monday_attending_dinner"]').click(function(){
		if($(this).is(':checked')){
			$('#show_partner_monday_evening_dinner').css('display', 'block');
		}else{
			$('#show_partner_monday_evening_dinner input').removeAttr('checked');
			$('#show_partner_monday_evening_dinner').css('display', 'none');
		}
	});

	/* Partners */
	$('#conference-registration input[name="tuesday_attending_awards"]').click(function(){
		if($(this).is(':checked')){
			$('#show_partner_tuesday_attending_awards').css('display', 'block');
		}else{
			$('#show_partner_tuesday_attending_awards input').removeAttr('checked');
			$('#show_partner_tuesday_attending_awards').css('display', 'none');
		}
	});

	/* Partners */
	$('#conference-registration input[name="wednesday_attending_gala"]').click(function(){
		if($(this).is(':checked')){
			$('#show_partner_wednesday_attending_gala').css('display', 'block');
		}else{
			$('#show_partner_wednesday_attending_gala input').removeAttr('checked');
			$('#show_partner_wednesday_attending_gala').css('display', 'none');
		}
	});

});
