$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$('.media').click(function(){
		$('div#mediamenu').stop().animate({width:'100%'},{queue:false, duration:1100, easing: 'easeOutCubic'})
	});
	
	//When mouse is removed
	$('.close_menu').click(function(){
		$('div#mediamenu').stop().animate({width:'0px'},{queue:false, duration:500, easing: 'easeOutExpo'})
	});
	
});
