$(document).ready(function(){
	$time = 1000;
	if(!$.browser.msie){
		$('#socialnetworking img').hide().each(function(index){
			$(this).animate({
				left: '+=50',
				height: 'toggle'
				},$time);
			$time += 1000;
		}).mouseover(function(){
			$(this).stop().animate({
				height: '55'},500
			);
		}).mouseout(function(){
			$(this).stop().animate({
				height: '45'},1200
			);
		});
	} else {
		$('#socialnetworking a').attr('class','socialnetworking');
	}
});
