$(document).ready( function() {
       $('.dropdown ul').hide(0);
       $('.dropdown').css('cursor', 'pointer');
       var active = 'be';
       $("."+active).parent().addClass('active').css('visibility', 'hidden').css('display', 'none');
       $('.dropdown ul li').each( function(e) {        
               var getClass = $('.active').find('a').attr('class');
               var getContent = $('.active').find('a').html();
               $('.view').addClass(getClass).text(getContent);
               $('.dropdown').hover( function() {
                       $('.dropdown ul').show();
               }, function(){
                       $('.dropdown ul').hide();
               });
       });
});



function PopUpURL(pagina,myWidth,myHeight)
			{ 
			var LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
			var TopPosition = (screen.height) ? ((screen.height-myHeight)/2)-50 : 0;
						
			var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
				sOption+="scrollbars=yes,width=" + myWidth +",height=" + myHeight +",left=" + LeftPosition + ",top=" + TopPosition + "";
				
			window.open(pagina,"myPharmaWindow",sOption); 
			
}


