/*------------------------------------------------------------------ 
 
	[GLOBAL JAVASCRIPT] 
 
	Project:    P&G 		
	Version:    1.0
	Last change:    7/07/09
	Assigned to:    Jaroslaw Krolewski
	
-------------------------------------------------------------------*/  

 $(document).ready(function() {
	
	 $("#sectionExplorer a.choose:first").hover(function(){
	 
		 $("#sectionExplorer a.choose:last").css("opacity",0.9);
		 $(this).css("opacity",1);
		 
	 });
	
	 $("#sectionExplorer a.choose:last").hover(function(){
		 
		 $("#sectionExplorer a.choose:first").css("opacity",0.9);
		 $(this).css("opacity",1);
		 
	 });	 
	 
	 $("#sectionExplorer").mouseout(function(){
		 
		 $("#sectionExplorer a").css("opacity",1);
		 
	 });	 
 });
 

