 window.addEvent('domready', function() {
	$$('.help_link').each( function(elm) {
		elm.setStyle('cursor', 'pointer');
		elm.addEvent('click', function() {
			window.open('/xl/help/'+elm.get('rel'), 'help', 'toolbar=no,menubar=no,status=no,location=yes,directories=no,copyhistory=no,scrollbars,height=700,width=900');
			//return false;
		});
	});
 });

window.addEvent('domready', function() {
	
	
	//zakladki na glowna:
	if($$('.menu-content div').length>0) {
		$$('.menu-content div').each(function(elm) {
			elm.setStyle('display', 'none');
		});
		$$('ul.menu-glowna li.pierwsza').each(function(elm) {
		var name = elm.id.substr(4, elm.id.length);
		$('zakladki_'+name).setStyle('display', 'block');
		$$('#zak_'+name+' a').setStyles({'background-color':'white', 'border-bottom-color':'white','color': '#000000'});
		});

		

		$$('ul.menu-glowna li.zakladka a').each(function(elm) {
		  	elm.getParent().addEvent('mouseenter', function() {
				//var name = elm.href.substr(elm.href.indexOf('/info/')+6);
				//name = name.indexOf('/')!=-1?name.substr(0, name.indexOf('/')):name;
				var name = elm.getParent().id.substr(4, elm.getParent().id.length);

				$$('.menu-content div').each(function(elm) {
					elm.setStyle('display', 'none');
				});
				$$('ul.menu-glowna li.zakladka a').each(function(elm) {
					elm.setStyles({'background-color':'#DDE5EF', 'border-bottom-color':'#275AB5', 'color':'#275AB5'});
				});
				$('zakladki_'+name).setStyle('display', 'block');
			 	$$('#zak_'+name+' a').setStyles({'background-color':'white', 'border-bottom-color':'white','color': '#000000'});
			//	$('zakladki_more').href=elm.href;
			});
		});
	}
	
	//zakladki2:
  	if($$('#teksty div').length>0) {
  		$$('#teksty div').each(function(elm) {
			elm.setStyle('display', 'none');
		});
		$('teksty_1').setStyle('display', 'block');
		
		$$('#teksty_linki a').each(function(elm) {
			elm.getParent().addEvent('mouseenter', function() {
			 		 var nr = elm.get('html');
					$$('#teksty div').each(function(elm) {
		  				elm.setStyle('display', 'none');
					});
					$('teksty_'+nr).setStyle('display', 'block');
		
			});
		});
	}

    //przypomnij haslo
	 	if($$('#przypomnij_haslo').length>0) {
  		$('przypomnij_haslo').addEvent('click', function() {
			window.location='/panel/password_restore';
		});
	}

	  
});

if(location.href.toString().indexOf('info')!=-1 || location.href.toString().indexOf('mypage')!=-1 || (location.href.toString().indexOf('panel')!=-1 && location.href.toString().indexOf('orders')==-1 && location.href.toString().indexOf('popup')==-1 && location.href.toString().indexOf('sent/')==-1 && location.href.toString().indexOf('recived/')==-1)  || glowna) {
  	teksty_header_mooquee = new Mooquee({
	  		element:'teksty_header',
		 	trans:{'tin':'fade', 'tout':'right'},
  			duration:3,
  			pause:5,
   		    firstitem:0,
			overflow: 'hidden'
		});

}

if($pick(glowna, false)) {

		var hot_news = new Mooquee({
	  		element:'hot-news',
		 	trans:{'tin':'up', 'tout':'up'},
  			duration:2,
  			pause:5,
   		    firstitem:0,
			overflow: 'hidden'
		});


}

