jQuery(document).ready(function() {


  $("#tip5").fancybox({
		'scrolling' : 'no',
		'titleShow'	: false,
		'onClosed'	: function() {
		    $("#login_error").hide();
		}
	});
    
	$("#login_form").bind("submit", function() {
	
	    
	    $.fancybox.showActivity();

		$.ajax({
			type	: "POST",
			cache	: false,
			url		: "http://www.mumbai77.com/mumbailocal/jquery/doit.php",
			data	: $(this).serializeArray(),
			success: function(data) {
				$.fancybox(data);
			}
		});

		return false;
	});

	
	/*
	*   Zebra-stripping table
	*/
	
	$("table.options tr:nth-child(even)").addClass('even');

});
