$(function(){
	$('#top input').click( function() {
		if ($(this).val() == 'E-mail' || $(this).val() == 'Hasło' || $(this).val() == 'Wyszukaj' || $(this).val() == 'Search') {
			$(this).val('');
		}
	});
	
	$('a.compare').click( function() {
		var count = parseInt( $(this).find('span').text() );
		
		if (count < 3) {
			$(this).attr('href', '#');
			alert( checkLang('pl') ? 'Należy dodać co najmniej 3 biura do porównania.' : 'At least 3 offices should be added to compare tool.' );
		} else {
			$(this).attr('href', checkLang('pl') ? 'porownaj-biura.html' : 'compare-offices.html');
		}
	});	
	
	$('a.mail').each( function(id) {
		$(this).attr('href', $(this).attr('href').replace(/\[at\]/, '@') );
		$(this).text( $(this).text().replace(/\[at\]/, '@') );
	});
});

function showMenu(id) { 
	//$('#' + id).fadeIn('fast');
	$('#' + id).css('display', 'block');
}

function hideMenu(id) {	
	$('#' + id).css('display', 'none');
}

function checkLang(lang) {
	var pageLang = $('#top').attr('class');
	if (pageLang == lang)
		return true;

	return false;
}
