

$(document).ready(function() {
	
	
	
	
	$('a.lightbox').lightBox();

	
	$('img#lin_wyb_miast').click(function() {
	
			 $('div#miasta').slideDown('slow');
		
		});

	$('img#close').click(function() {
	
			 $('div#miasta').slideUp('slow');
		
		});

	$('div#spons').cycle({ 
	    fx: 'blindX', 
	    timeout: 5000
	   
	 });
	 
	$('div#banery').cycle({ 
	    fx: 'fade', 
	    timeout: 4000
	   
	 }); 
	
	$('input#szukaj').click(function(){	
			$('input#szukaj')[0].value = "";
		});
		
	$('input#email').click(function(){	
			$('input#email')[0].value = "";
		});
		
	$('input#user').click(function(){	
			$('input#user')[0].value = "";
		});
		
	$('input#pass').click(function(){	
			$('input#pass')[0].value = "";
		});
	
	
	$('#newsletter_dodaj').click(function(){		
								
								$('div#jsus').html("Sprawdzanie adresu e-mail...")
								
								
								
								$.ajax({
						                    type: "GET",
						                    url: "index.php?module=newsletter&ajax=1&mail="+$('input#email')[0].value,
						                    data: {},
						                    success: function(data){
						                        if (data=='ERROR') $('div#jsus').html('Błąd');
						                        else $('div#jsus').html(data);
						                    },
						                    error: function() {
						                        $('div#jsus').html('Error');
						                    }
						                });

						});
	
	
	
});
function googleMap(x,y,s) {
	var latlng = new google.maps.LatLng(x,y);
	var myOptions = {
	  zoom: 14,
	  center: latlng,
	  mapTypeId: google.maps.MapTypeId.ROADMAP
	};
	var map = new google.maps.Map(document.getElementById("MapaHere"), myOptions);
	var marker = new google.maps.Marker({
        position: latlng, 
        map: map,
        title: s
    });
}
