/*
====================================================================== 
Version:       1.0													
Last Updated:	May 10, 2010
Copyright:	   (c) 2010 Joe Nyaggah. All rights reserved.				
====================================================================== 
*/
$(document).ready(function() {
	//hide these as soon as the DOM is ready					   
	$('.moreWork, .refs, #tellBuddies, .genContact').hide();					   
	//reveal additional work experience list
	$('a#reveal-work').click(function() {
		$('.moreWork').slideToggle(400);							   
	});
	//reveal references
	$('a#reveal-refs').click(function() {
		$('.refs').slideToggle(400);							   
	});
	//reveal general contact form
	$('.availability a, p.highlight a, div.refs p a').click(function() {
		$('.genContact').slideToggle(400);
		return false;
	});
	//reveal send to friend(s) form
	$('a#reveal-tellBuddies').click(function() {
		$('#tellBuddies').slideToggle(400);
		return false;
	});
	//validate contact form	
	$("#genContact").validate();	
});//end
