/* JavaScript File Area Digital										*/
/* functions.js 													*/
/* Modified July 03th 2009								 			*/
/* http://www.areadigital.org/ 									    */

$(document).ready(function(){
						   
// ------------------------------------------ Toolbar - Functions to open and close the toolbar layer ---------------------------------------------------------

	$('.toolbar .open').click(function(){
		$(this).hide();
		$('.sorting').show();
		$('.toolbar .close').show();
		return false;
	});
	
	$('.toolbar .close').click(function(){
		$(this).hide();
		$('.sorting').hide();
		$('.toolbar .open').show();
		return false;
	});

// ------------------------------------------------------------------------------------------------------------------------------------------------------------

});
