$().ready(function() {
	// MAKES IT SO WE HAVE KICK ASS CHECKBOXES
	
	// reset the form checkboxes
	$('.get-started-footer input:checkbox').attr('checked', false); 
	
	// checkbox toggles  
	$('.get-started-footer .check-box label').toggle(function() {
	  $(this).addClass("checked");
	  //$(this).add().css('color','red');
	  $('#'+ $(this).attr('for')).attr('checked', true);
	}, function() {
	  $(this).removeClass("checked");
	  $('#'+ $(this).attr('for')).attr('checked', false);
	});
	
	// MAKES IT SO WE HAVE KICK ASS DROPDOWNS
	if (!$.browser.opera) {

		$('select.cms_dropdown').each(function(){
			//var title = $(this).attr('title');
			var title = 'Select One';
			if( $('option:selected', this).val() != ''  ) title = $('option:selected',this).text();
			$(this)
				.css({'z-index':210,'opacity':0,'-khtml-appearance':'none'})
				.after('<span class="drop-text">' + title + '</span>')
				.change(function(){
					val = $('option:selected',this).text();
					$(this).next().text(val);
				})
		});

	};
	
	$('#submit-project').click(function() {
	  $('form.cms_form').submit();
	});
	
});
