/*
====================================================================== 
Version:       1.0													
Last Updated:	April 21, 2010
Copyright:	   (c) 2010 Joe Nyaggah. All rights reserved.				
====================================================================== 
*/
jQuery(document).ready(function() {
var $j = jQuery.noConflict();
	//hide the honeypot captcha on dom ready
	$j('form.mail li.screenReader').hide();
	//enlarges textarea when you click (focus)
	//and reduces it when you leave (blur)
	//just a lil extra touch of sexiness
	$j('textarea').focus(function(){ 
		$j(this).animate({ height:"150px"}, 500); // enlarge width 
	}).blur(function(){ 
		$j(this).animate({ height:"50px"}, 500); // return to original value 
	});
	//slide toggles the honeypot captcha
	$j('a#robotsProceed').click(function() {
		$j('li.screenReader').slideToggle(200);
		return false;
	});
	//colorbox divs
	$j(".enlarge").colorbox();
});
