var matchHeight = function(e1,e2)
{
	e1.css("height", "auto");
	e2.css("height", "auto");	

	var height1 = (e1.height());
	var height2 = (e2.height());
	
	if(height1<height2)
	{
		e1.height(height2);
		//e2.css("height","auto");
	}
	else
	{
		e2.height(height1);
		//e1.css("height","auto");
	}
}



$(function()
{
	//Social Links
	$('.social_link').hover(function()
	{
		$(this).children(':nth-child(2)').fadeIn();
	},
	function()
	{
		$(this).children(':nth-child(2)').stop(true, true);
		$(this).children(':nth-child(2)').fadeOut();
	});
	
	//Input Boxes
	$('input[type="text"]').focus(function()
	{
		$(this).addClass('focus');
	});
	
	$('input[type="text"]').blur(function()
	{
		$(this).removeClass('focus');
	});
	
	//Contact Comment
	$('#contact_comment').focus(function()
	{
		$(this).css('background-image', 'url("/images/message_bg_h.png")');
	});
	
	$('#contact_comment').blur(function()
	{
		$(this).css('background-image', 'url("/images/message_bg.png")');
	});
	
	
	
});



