
$(document).ready(function(){

//custom select box
	if( $('.slct_box').length > 0 ) $('.slct_box').selectbox();
	
	
	$('.butn_pressMedia').click(function(){
			if($(this).hasClass('press_on')){
				$(this).parent().animate({'top':'267px'},"slow");	
				$(this).removeClass('press_on');
			}
			else{
				$(this).addClass('press_on');
				$(this).parent().animate({'top':'0px'},"slow");	
			}
	});
	
	
 });
	
