// colorbox //
$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='cbox1']").colorbox();
				
});

//contact form
function check_hidden(){
	
	var selected_option = '';
	var field_label = '';	
	
	selected_option =  document.getElementById('hear_about_option').value;
	if(document.getElementById('hear_about_info_label_' + selected_option)){
		field_label = document.getElementById('hear_about_info_label_' + selected_option).value;
	}
	
	//field_label =  document.getElementById('hear_about_info_label_' + document.getElementById('hear_about_option').value).value;
	if(field_label.length){
		document.getElementById('hear_about_info_label').innerHTML = field_label;
		$('#hear_about_info_row').show();
		//$('#hear_about_info_row').fadeIn('slow');
		
	}else{
		document.getElementById('hear_about_info_label').innerHTML = '';
		document.getElementById('hear_about_info').value = '';
		$('#hear_about_info_row').hide();
		//$('#hear_about_info_row').fadeOut('slow');	
	}	

}

