            //'''''''''''''''''''''''''''''''''''''''
            // START END NAV SELECT
            //''''''''''''''''''''''''''''''''''''''''

            function setMainNav(strNavId)
            {
                 $("#"+ strNavId).removeClass("none");
                 $("#"+ strNavId).addClass("selected");
            }    

            //'''''''''''''''''''''''''''''''''''''''
            // END NAV SELECT
            //''''''''''''''''''''''''''''''''''''''''            

            //'''''''''''''''''''''''''''''''''''''''
            // START EMI SONG PLAYER
            //''''''''''''''''''''''''''''''''''''''''
			function song_button_activate(){
                
				$("span.song_player").mouseover(function ()
				  {
					 if( $(this).attr('id') != 'active')
						$(this).children().attr({ src: "/images/music_play_active.png"}); 
				  });
				  
				$("span.song_player").mouseout(function ()
				  {
					if( $(this).attr('id') != 'active')
						$(this).children().attr({ src: " /images/music_play_inactive.png"}); 
				  });				  

				$("span.song_player").mousedown(function ()
				  {
                        
					if( $(this).attr('id') != 'active')	
					{  
						 //Current value not active but turn off the active item
						 $('#active').children().attr({ src: "/images/music_play_inactive.png"});
						 $('#active').attr('id', 'not_active');
						 
						 //Now active the current item
						 $(this).children().attr({ src: "/images/music_stop_active.png"}); 
						 startPlayer($(this).children().attr('rel'));
						 $(this).attr('id', 'active');
						 
					}	 
					else
					{
						//Pause ?
						stopPlayer();
						$(this).attr('id', 'not_active');
						$(this).children().attr({ src: "/images/music_play_inactive.png"});
					}
					 
				  });

				  
			}
			
			function startPlayer(strUrl){
					var swf = swfobject.getObjectById("myCom");
                    if (swf && typeof swf.loadAudio != "undefined")
                       swf.loadAudio(strUrl);
				}
				
			function stopPlayer(){	
					var swf = swfobject.getObjectById("myCom");
                    if (swf && typeof swf.loadAudio != "undefined")                    
                        swf.stopAudioPlayer()				
				}

            //'''''''''''''''''''''''''''''''''''''''
            // END EMI SONG PLAYER
            //''''''''''''''''''''''''''''''''''''''''                
                