$(document).ready(function(){	
	$.ajaxSetup ({   
		cache: false   
	});   
	
	var ajax_img = "<div style = 'margin:100px auto; width:24px;'><img src = 'images/layout/ajax-loader.gif' alt = 'Loading...' /></div>";
	
	//$("#theForm").validate();
	
	$('#radio_interest').click(function(){
		$('.form_order').attr('disabled', true).css('background','#e0e0e0');
		$('#formLegend').fadeOut(100,function(){
			$(this).html('Show my interest');
			$(this).fadeIn(100);
		});
	});
	
	$('#radio_order').click(function(){
		$('.form_order').removeAttr('disabled').css('background','#ffffff');
		$('#formLegend').fadeOut(100,function(){
			$(this).html('Place an order');
			$(this).fadeIn(100);
		});
	});
});

