
	$(document).ready(function()
	{
	    $("#logo").hover(makeTall, makeShort);
	    
	    if( $(".progress_bars").length )
	    {
	    	$(".progress_bar").each(function()
	    	{
	    		var $this = $(this);
	    		var progress_bar = $this.attr("data-progress");
	    		
	    		$this.css("width", "0%");
	    		$this.animate({width: progress_bar+"%"}, 1000, 'easeOutSine');
	    	});
	    }
	});
	
	function makeTall()
	{
	    $(this).animate({"height": 91}, 200);
	}
	
	function makeShort()
	{
	    $(this).animate({"height": 65}, 200);
	}
	
		
