function myInit() {	
	
	jQuery("#navigation > ul > li").hover( function () {		
		jQuery("#navigation > ul > li").removeClass('hover');
		jQuery(this).addClass('hover');
		},function () {
		jQuery(this).removeClass('hover');
		}
		);
	
	jQuery('#content ul.showhide li h2 a').click( function() {													  	
		jQuery('#content ul.showhide li div.faq').hide();
		jQuery('#content ul.showhide li.on').removeClass('on');
		var theId = this.id;
		theDiv = theId.replace("q","a");		
		jQuery('#'+theDiv).show();
		jQuery(this).parent().parent().addClass('on');
		return false;
		});
	
	jQuery("#content ul.showhide li div.faq").hide();
	jQuery("#content ul.showhide li:first").addClass('on');
	jQuery("#content ul.showhide li:first div.faq").show();
	
	jQuery("img.applybutton").hover( function () {	
		jQuery(this).attr('src','/img/apply-button-on.gif');
		},function () {
		jQuery(this).attr('src','/img/apply-button.gif');
		}
		);
	}
