//alert("");

// front page changed to load with all content visible, then hide sections within
// browser on page ready

$AK(document).ready(function(){

	$AK('.et_homepage_article_section').hide();
	
							 });


function  et_moo_hide(id){
	// id will be like 
	// et_home_a_hid1 which is teh ID of the hidden text section 
	// manipulate 
	//#et_home_a_hid1_img {}
	//#et_home_a_hid1 {}
	//#et_home_a_hid1_img_hide {}
	
	
	$AK('#'+id).slideUp('fast');
	$AK('#'+id+ '_img').show();



}


function  et_moo_show(id){
	// id will be like 
	// et_home_a_hid1 which is teh ID of the hidden text section 
	// manipulate 
	//#et_home_a_hid1_img {}
	//#et_home_a_hid1 {}
	//#et_home_a_hid1_img_hide {}
	

	
	$AK('#'+id).slideDown();
	$AK('#'+id+ '_img').hide();

}



