/*
====================================================================== 
singlePAGERS 										
Version:       1.1													
Last Updated:	June 22, 2010
Copyright:	   (c) 2010 Joe Nyaggah (singlePAGERS) 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(".view-terms").colorbox({inline:true, href:"#terms"});
	$j(".view-privacy").colorbox({inline:true, href:"#privacyPolicy"});
	$j(".changelog-moja").colorbox({inline:true, href:"#changelog-moja"});
	$j(".changelog-mbili").colorbox({inline:true, href:"#changelog-mbili"});
	$j(".changelog-tatu").colorbox({inline:true, href:"#changelog-tatu"});
	$j(".git-password").colorbox({inline:true, href:"#lostPassword"});
	
	
	//colorbox form divs
	$j(".singupFormage").colorbox({inline:true, href:"#singupFormage"});

	//featurelist on front page.
	$j("a[rel='featurelist']").colorbox();

	$j(".example6").colorbox({href:"document.html div#content"});
	
});
