function contact_show(select){
	if(select.value == "other" || select.value == "undecided"){
		$j('#hidden_yacht_size').fadeIn(400);
		$j('#hidden_yacht_num_cabins').fadeIn(400);
		$j('#hidden_yacht_investment').fadeIn(400);
	}
	else{
		$j('#hidden_yacht_size').fadeOut(400);
		$j('#hidden_yacht_num_cabins').fadeOut(400);
		$j('#hidden_yacht_investment').fadeOut(400);
	}
}

function contact_show_location(select){
	if(select.value == "other"){	
		$j('#hidden_preffered_location_other').fadeIn(400);
	}
	else{
		$j('#hidden_preffered_location_other').fadeOut(400);
	}
	
}

function submitForm(formid)
{
	document.getElementById(formid).submit();
}

function toggle_heard_other()
{	
	if ($j('#heard_other').is(':checked')) {
		$j('#heard_other_text').show();
	}
	else
	{
		$j('#heard_other_text').hide();
		$j('#heard_other_text').val("");
	}
}

$j(document).ready(function() {
	offering =document.getElementById("offering")
	preffered_location = document.getElementById("preffered_location")
	heard_other_text =document.getElementById("heard_other_text")
	
	if(typeof(heard_other_text) !== 'undefined' && heard_other_text != null)
	{
		toggle_heard_other();
	}
	if(typeof(offering) !== 'undefined' && offering != null)
	{
		contact_show(offering);
	}
	
	if(typeof(preffered_location) !== 'undefined' && preffered_location != null)
	{
		contact_show_location(preffered_location);
	}
});