
var $j = jQuery.noConflict();
	
$j(document).ready(function(){

	$j("a#tyc").click(function() {
		var the_link = $j(this).attr('href');
        GB_show('SocialWorkJobs.com.au Terms and Conditions', the_link, 470, 540);
		return false;
	});
	
	$j('h2.img').after('<div id="people"></div>');
	
	$j('input#EmployerAbn').focus(function(){

		$j(this).after('<div class="explanation" id="EmployerAbn-explanation">Please use spaces, e.g:<br />ABN XX XXX XXX XXX<br />ACN XXX XXX XXX</div>');
	
	}).blur(function(){
		$j('div#EmployerAbn-explanation').remove();
	
	})
	
});
