// following two functions kindly provided by Jonathan Howard
$.fn.pause = function(milli,type) {
	milli = milli || 1000;
	type = type || "fx";
	return this.queue(type,function(){
		var self = this;
		setTimeout(function(){
			$.dequeue(self);
		},milli);
	});
};

$.fn.clearQueue = $.fn.unpause = function(type) {
	return this.each(function(){
		type = type || "fx";
		if(this.queue && this.queue[type]) {
			this.queue[type].length = 0;
		}
	});
};

// written for SuburbanTaxis

$(document).ready(function(){
	if ( $.browser.msie ) {
		document.execCommand("BackgroundImageCache", false, true) ;
	}
	$('#top2').localScroll({
		target:'#content2'
	});
});
