/****************************************************************************************/
/*																						*/
/*    JAVASCRIPT DOCUMENT DEVELOPED BY IVAN ALEKSIC										*/
/*    IMPLEMENTEK INTERNET CONSULTING GROUP	- BELGRADE - SERBIA							*/
/*    IVAN@IMPLEMENTEK.COM - WWW.IMPLEMENTEK.COM										*/
/*																						*/
/*    Copyright - African Press Organization - Organisation De La Presse Africaine		*/
/*																						*/
/*    Revision 1.0 - December 31 2009 - Ivan											*/
/*    Revision 1.1 - January 19 2010 - Ivan												*/
/*																						*/
/****************************************************************************************/
var active_hidden_text = "";
/*function doSection(obj) {
	
	if(document.getElementById(obj).style.display == 'none') {
		document.getElementById(obj).style.display = 'block';
	}
	if(active_hidden_text != "" && active_hidden_text != obj) {
		document.getElementById(active_hidden_text).style.display = 'none';
	}
	active_hidden_text = obj;
}*/
var doSection = function(id) {
	$("#" + id).toggle('normal');
}



$(document).ready(function(){	
						   
						   
	$('#text a[href][title]').qtip({
		position: {
		  corner: {
			 tooltip: 'bottomLeft', 
			 target: 'topRight' 
		  }
	   },

	  
      content: { text: false  },
      style: 'light'
   });				
						   
	
	$("#nav-one li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
		if (document.all) {
			$("#nav-one li").hoverClass ("sfHover");
		}
	});
	
	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
		
		
		
		

   


		
};	
