jQuery(function(){
	jQuery("div.csw").prepend("<div class='loading'><img src='imgs/img-loader.gif' alt='loading...' /></div>");
});
var j = 0;
jQuery.fn.spinner = function(settings) {
	 settings = jQuery.extend({
     easeFunc: "expoinout",
     easeTime: 750,
     toolTip: false
  }, settings);
	return this.each(function(){
		var container = jQuery(this);
		// Remove the preloader gif...
		container.find("div.loading").remove();
		// Self-explanatory...
		container.removeClass("csw").addClass("stripViewer");
				
		j++;
  });
};

jQuery(window).bind("load", function() {
	jQuery("div#spinner").spinner()
});

