$(document).ready(function() {

	$('#slide').cycle();

	$(".others input").click(function(){
		
		$(this).parent().parent().find('input').attr('checked',false);
		$(this).attr("checked",true);
		
		drop = $(this).parent().parent().parent().find('select');
		options = $(this).attr('title');
				
		var array = options.split("|");
		
		drop.html("");
		
		for(i=0; i<array.length; i++) 
		{
			el = $("<option></option>").attr("value",array[i]).text(array[i]);			
			drop.append(el);
		}
		
	});
		
	$('#yBh a').click(function(){

		$('#ySadv').toggle();
		return false;
		
	});
	
	$().UItoTop();
	
	$('#interest').change(function(){
			
			var selected = $("#interest option:selected"); 
			var gc = selected.val();
			
			if ( gc != -1 )
			{
				$('.hidden').load('http://www.galeoyachting.com/wp-content/themes/galeo/form/'+gc+'.php');		
			}
			else 
			{
				$('.hidden').html('');
			}
				
	});					
			
	
});