	$(document).ready(function() {
		$('#reg_company').hide();
		// shows the slickbox on clicking the noted link
  		$('#reg_employer').click(function() {
 			$('#reg_company').show('fast');
  		});
  		$('#reg_agency').click(function() {
 			$('#reg_company').show('fast');
  		});
  		$('#reg_seeker').click(function() {
 			$('#reg_company').hide('fast');
  		});
  		$('#reg_blogger').click(function() {
 			$('#reg_company').hide('fast');
  		});
  		
	});


	$(document).ready(function() {
  		$('#btn_keyword').click(function() {
 			$('.searchagents').hide();
 			$('#agent_keyword').show('fast');
  		});
  		$('#btn_employer').click(function() {
 			$('.searchagents').hide();
 			$('#agent_employer').show('fast');
  		});
  		$('#btn_state').click(function() {
 			$('.searchagents').hide();
 			$('#agent_state').show('fast');
  		});
  		$('#btn_country').click(function() {
 			$('.searchagents').hide();
 			$('#agent_country').show('fast');
  		});
	});

	function enableForm()
	{
		if(document.getElementById("complete").checked == true)
		{ document.getElementById("submit").disabled = false; }
		else { document.getElementById("submit").disabled = true; }
	}

	$(document).ready(function() {	// shorthand for $(document).ready() BTW
        //$("div.rounded").corner("round 8px bl br")
		// $('img[@src$=.png]').ifixpng(); 
		$('div#pngfix').ifixpng();
		$('input#button').ifixpng();
	});

	
	
