$(document).ready(function() {
	// AJAX
	$.fn.ajax = function() {
		$('.ajax').ajaxStart(function() {
			$(this).html('<img src="/images/loading-bar.gif" alt="ajax loading" />');
		});
		$('.ajax').ajaxStop(function() {
			$(this).html('');
		});
	}
	$.fn.ajax();
	
	// WAIT
	$.fn.wait = function(time, type) {
              time = time || 1000;
              type = type || "fx";
              return this.queue(type, function() {
                  var self = this;
                  setTimeout(function() {
                      $(self).dequeue();
                  }, time);
              });
          };

	// ACCORDIAN 
	$('div.accordian').accordion({ header:'h4', animated:'easeOutBounce', event:'click' });
	
	// Navigation
	/*$('div#nav ul').sortable({
						placeholder: 'sort-placeholder'
					});
	*/
	
	
});
