/*
OPS AJAX CALL FUNCTION
Date: 17 January 2008
Author: Ashley Glover
Copyright One Part Scisors, 2008


NOTES / MODIFICATIONS:
11 March - very cut down for forms verify only.
27 March - added navigation scriptaculous, scrollups and so on
*/


function scrollup () {
	new Effect.ScrollTo($('wrapper'), {offset: -24});	
}


function JSgetPage (contentajax,holder,loading) {
	jQuery(function($j) {
		$j("#" + holder).load(contentajax);
		});
		$j().ajaxSend(function(r,s){  
		$j("#" + loading).show();  
		});
		$j().ajaxStop(function(r,s){  
		$j("#" + loading).fadeOut("fast");  
		});
	}
