var $j = jQuery.noConflict();

// SHOW/HIDE DIVS

	$j(document).ready(function(){	
		$j("#slider").easySlider({
			auto: true, 
			continuous: true,
			vertical: false,
			speed: 500,
			pause: 9000,
			controlsShow: false
		});
	});
	
	$j(document).ready(function(){	
		$j("#slider-right").easySlider({
			auto: true, 
			continuous: true,
			vertical: false,
			speed: 500,
			pause: 9000,
			controlsShow: false
		});
	});


	$j(document).ready(function() {
		$j('.toggle').click(function() {
		$j(this).next().animate({height: 'toggle'},200);
	return false;
		});
	});

	$j(document).ready(function() {
		$j('.hide_panel').hide();
			return false;
	      });	
	
	



