/*
Mouseover Manipulation Script
*/
$(document).ready(function() {
		
	$("li#facebook").hover(function() {
	    $(this).stop().animate({ width: "150px" }, 200);
	},function(){
	    $(this).stop().animate({ width: "35px" }, 210);
	});
	
	$("li#twitter").hover(function() {
	    $(this).stop().animate({ width: "150px" }, 200);
	},function(){
	    $(this).stop().animate({ width: "35px" }, 210);
	});
	
	$("li#mail").hover(function() {
	    $(this).stop().animate({ width: "150px" }, 200);
	},function(){
	    $(this).stop().animate({ width: "35px" }, 210);
	});
	
	$("li#linkedin").hover(function() {
	    $(this).stop().animate({ width: "150px" }, 200);
	},function(){
	    $(this).stop().animate({ width: "35px" }, 210);
	});
	
	$("li#blog").hover(function() {
	    $(this).stop().animate({ width: "150px" }, 200);
	},function(){
	    $(this).stop().animate({ width: "35px" }, 210);
	});
	
	$("#progress").hover(function() {
	    $('#progress-over').stop().animate({ marginTop: "0px" }, 200);
	},function(){
	    $('#progress-over').stop().animate({ marginTop: "88px" }, 210);
	});

});
