function Find_Event(page){              

   $.scrollTo( 0, 300, {queue:true} );

   $.post("ajax_events.php?page="+page, 

            $('#Place_Form').serialize(),

            function(response){

                    var res = eval('(' + response + ')');

                    $("#ControlDiv").slideUp(1000, function () {

                      $("#ControlDiv").html(res.msg);

                      $("#ControlDiv").slideDown(1000);

                      

                    });                   

                    

                }          

                );

}

function Show_Event(img, text){
	var text = '<img src="'+img+'" >'+text;
	$('#ShowPromotion').show(800);
	$('#addInfo').html(text);
}

