// JavaScript Document
$(document).ready(function(){
	
	//When mouse rolls over
	$('#mellisdesigns').mouseover(function(){

								$(this).stop().animate({height:'92px', width:'150px'},
							   {queue:false, duration:400, easing: 'easeOutQuad'})
							   });

	//When mouse is removed
	$('#mellisdesigns').mouseout(function(){
							  $(this).stop().animate({height:'24px', width:'142px'},
													 {queue:false, duration:400, easing: 'easeOutQuad'})
							  });
	
	//When mouse rolls over
	$('#portfolio').mouseover(function(){

								$(this).stop().animate({height:'180px', width:'150px'},
							   {queue:false, duration:400, easing: 'easeOutQuad'})
							   });

	//When mouse is removed
	$('#portfolio').mouseout(function(){
							  $(this).stop().animate({height:'24px', width:'96px'},
													 {queue:false, duration:400, easing: 'easeOutQuad'})
							  });
	
	$('#projects').mouseover(function(){

								$(this).stop().animate({height:'234px', width:'190px'},
							   {queue:false, duration:400, easing: 'easeOutQuad'})
							   });

	//When mouse is removed
	$('#projects').mouseout(function(){
							  $(this).stop().animate({height:'24px', width:'88px'},
													 {queue:false, duration:400, easing: 'easeOutQuad'})
							  });
						   
						   $('#contact').mouseover(function(){

								$(this).stop().animate({height:'46px', width:'150px'},
							   {queue:false, duration:400, easing: 'easeOutQuad'})
							   });

	//When mouse is removed
	$('#contact').mouseout(function(){
							  $(this).stop().animate({height:'24px', width:'79px'},
													 {queue:false, duration:400, easing: 'easeOutQuad'})
							  });
						   
	$('#blog').mouseover(function(){

								$(this).stop().animate({height:'234px', width:'150px'},
							   {queue:false, duration:400, easing: 'easeOutQuad'})
							   });

	//When mouse is removed
	$('#blog').mouseout(function(){
							  $(this).stop().animate({height:'24px', width:'44px'},
													 {queue:false, duration:400, easing: 'easeOutQuad'})
							  });
						   });
							  