// JavaScript Document
$(document).ready(function(){
		$('#authBtn').click(auth);
		$('#resizable-text').resizable();
		
		$('a.tooltip').tooltip({ 
    		track: true, 
		    showURL: false, 
    		showBody: " - ", 
    		fade: 250 
		});
	  $(".fullgallery").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
	
	$("a.grouped_elements").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
		
});

function auth(e)
{
	//Event
	//e.preventDefault();
	var params = $('#auth-form').serialize();
			//alert(params);
	$.post("adm.php",params, function(data){
				document.location = "index.php";
			});			
}

