$(document).ready(function(){
		
		var showPanel='open';				   
		var CONTENT="";
		
		$('#anim-panel').hide();
		
						
		
						 
						  
			function _setContent()
			{
						CONTENT=$('.services').html();
						
						$('.services').remove();
						$('.main').append('<div class="services">'+CONTENT+'</div>')
						
						$('.services').css({
									'background':'#000000',
									'height':250
									 
									 
									 });
						$('.f1').css({
									'left':'0px',
									'position': 'absolute',
									'z-index':99999,
									'top':'150px'
									 
									 
									 });
			}
			
			function _setControl()
			{
				 $('.top').bind('click',_onlclickFunc);
			}
			
			function _onlclickFunc()
			{
				if(showPanel=='close'){
				//$('.bottom').slideUp(600,'easeOutExpo');
				$('.slider').animate({top:185},900,'easeOutExpo');

				$('.f1_butt').css({'background':'url(images/butt.png) no-repeat'})
				showPanel='open'
				}
				else
				{
				//$('.bottom').slideDown(600,'easeOutExpo');
				$('.slider').animate({top:0},900,'easeOutExpo');
				$('.f1_butt').css({'background':'url(images/buttDown.png) no-repeat'})
				showPanel='close'
				}
			
			}						   



_setContent();
_setControl();


});
