$(document).ready(function(){
		//flag section
		$(".btn-slide-flag").click(function(){
			$("#flag_panel").slideToggle(50);
			$(this).toggleClass("active"); return false;	
		});
		//
		$("a[rel^='prettyPhoto']").prettyPhoto();
		$(".cmxform").validate();
	});

function panel_click(id, bool){	
		panel_id = "#" + id;
		if (bool == 1){
		$(".panel").hide();
		$(panel_id).slideToggle(100);
		return false;}
		else{
		$(panel_id).hide();
		}
	};
