// JavaScript Document
jQuery(document).ready(function() {

	//POPOUT FOR THE APP_DEVELOPMENT.HTML===================================================================
	
	$('a.img_footer_logo').mouseenter(function(){
		 $('.ser_icon_img', this).stop().animate({height:'33', width:'108', left:'-20', top:'-7', filter:'alpha(opacity=100)', opacity:'1'}, "fast");
		 //$('.ser_name', this).stop().animate({fontSize:'12'}, "fast");
		 
	}).mouseleave(function(e) {
		$('.ser_icon_img', this).stop().animate({height:'22', width:'72', left:'0', top:'0', filter:'alpha(opacity=0)', opacity:'0'}, "fast");
		//$('.ser_name', this).stop().animate({fontSize:'11'}, "fast");
	});		

});
