window.addEvent('domready', function() {

 var browseSlide2 =  new Fx.Slide('containerbrowse');

 
	$('browse-show-all').addEvent('submit', function(e) {

		//Prevents the default submit event from loading a new page.


		e.stop();


		//Empty the log and show the spinning indicator.

		//Set the options of the form's Request handler. 

var containerbrowse = $('con_br').empty();
$('con_br').innerHTML = "<p><img src='/assets/js/smoothbox/loading.gif'/> Loading...</p>";
		//("this" refers to the $('myForm') element).

		this.set('send', {onComplete: function(response) { 

			containerbrowse.set('html', response);

		
		}});

		//Send the form.

		this.send();

	});
});




