//usunięcie po najechaniu kursorem myszy wartości domyślnych w formualrzu logowania// M. Grzesiak
			$$('input').each( function doSomething(item){
	            item.observe('click', function(){
					if(item.value == 'login' || item.value == 'passwd')
						$(this).value = '';
				});
				
				item.observe('mouseout', function(){
					if(item.value == '' && item.readAttribute('id') == 'log')
						$(this).value = 'login';
					
					if(item.value == '' && item.readAttribute('id') == 'pass')
						$(this).value = 'passwd';
				});
			});

//wyświetlenie komuniaktu z informacją o przekierowaniu z domeny polconstruct.com
//zmienne "is_redirect" oraz "redirect_msg" są tworzone w templates w pliku "layout.php"	M. Grzesiak	
/*Event.observe(window, 'load', function() {
	if(is_redirect){
		if ($('mymovie') != undefined) $('mymovie').hide();
		Modalbox.show('<div style="font-size: 12px; text-align: center; padding-top: 20px;"><p style="line-height: 15px;">'+redirect_msg+'</p><br/><p style="line-height: 15px;">'+redirect_msg2+'</p><input id="MB_close_content" style="margin: 0 auto; margin-top: 15px;" type=\'button\' value=\'OK\' onclick=\'Modalbox.hide(); document.getElementById("mymovie").style.display = "block"; window.location="."\'/></div>', {title: 'Pressiton Construction', width: 500, height: 220});
		
		$('MB_close').observe('click', function(){
			if ($('mymovie') != undefined) $('mymovie').show();
		});
	}
});*/


function swapImage(){
  alert('ok');
}