$(document).ready(function() {

	if($.browser.mozilla)
	{
		$('#top-navigation > ul.navigation li:first-child').css({
			marginLeft: '20px'
		});
	}

	$('input[name^="search_string"]').focus(function() {
		this.select();
	});
	$('input[name^="search_string"]').blur(function() {
		if($('input[name^="search_string"]').val() == '')
		{
			$('input[name^="search_string"]').attr('value', 'Vyhľadávanie...');
		}
	});

	if($('input[name^="search_string"]').val() == '')
	{
		$('input[name^="search_string"]').attr('value', 'Vyhľadávanie...');
	}

	if ($('div#mapa').length == 1)
	{
		var elm = '<img src="http://maps.google.com/maps/api/staticmap?center=Podlavicka+cesta+9+Banska+Bystrica+Slovakia&zoom=16&size=640x400&maptype=roadmap&markers=icon:http://chart.apis.google.com/chart%3Fchst%3Dd_map_pin_icon%26chld%3Dhome%257C99b3cc|48.743704,19.111446&sensor=true" alt="Sídlo firmy SESaP, s. r. o."></img>';
		$('div#mapa').html(elm);
	}
	
	$("input[type='text'], input[type='password']").focus(function () {
		this.select();
	});
	
	
});

