var fancybox_settings={'transitionIn': 'fade','transitionOut':'fade','easingIn':'swing','easingOut': 'swing','autoDimensions': true};
$.ajaxSetup({
	beforeSend: function(xhr) {xhr.setRequestHeader("If-Modified-Since", "Thu, 1 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("Cache-Control", "no-cache")},
	cache : false,
	type:"GET",
	contentType:"text/html; charset=UTF-8",
	dataType:   "html",
	error: function (XMLHttpRequest, textStatus, errorThrown) {window.alert(XMLHttpRequest.responseText);
    }
 })
 
 $(document).ready( function() {

	fancy();
	
});

function fancy(){
	
	$("a.admin-menu , a[rel=lightbox]").fancybox({
				'autoScale'     	: false,
		        'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'easingIn'		    : 'swing',
				'easingOut'		    : 'swing',
				'autoDimensions'    : true,
				'showNavArrows'     : false,
				'titleShow'         : false,
				onComplete:function(){										
					fancy();
				},
				onCleanup:function(){
				}
	});	
}

function message(type){

	$("<a id='testing'></a>").attr("href", 'libs/ajax.Messages.php?type='+type).fancybox(fancybox_settings).trigger("click").remove();
	
}