jQuery(document).ready(function(){

	jQuery(".btn-slide").click(function(){
		jQuery("#panel").slideToggle("slow");
		jQuery(this).toggleClass("active"); return false;
	});
	
	jQuery('#footer_col1, #footer_col2, #footer_col3').equalHeights();
	jQuery(".inline").colorbox({width:"576px", inline:true, href:"#inline_example1"});
	jQuery('.dropdown2').nmcDropDown({
			submenu_selector: 'ul',
			show: {opacity: 'show', top: '-=10px'},
			show_speed: 100,
			hide: {opacity: 'hide', top: '+=10px'},
			hide_speed: 300
		});
	 
});