
// equal heights
function equalHeight(group)
{
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

// when ready
$(document).ready(function()
{
	//equalHeight($(".social-media .grid-4"));

    //set the initial values
    detector = $('.grids');
    compareWidth = detector.width();

    $(window).resize(function(){
		
        // compare everytime the window resize event fires
		if(detector.width()!= compareWidth)
		{
			// a change has occurred so update the comparison variable
			compareWidth = detector.width();
			
			elementCheck();
			
		}

	});
	
	function elementCheck()
	{
	
			if(detector.width() < 720)
			{
				 $('#about-me').html('<p>Hi there! I\'m a senior web developer / designer for <a href="http://www.curveagency.com" title="Go to: curveagency.com">Curve Agency</a>, which is based in Leeds.</p>');
			}
			else
			{
				$('#about-me').html('<p>Hi there! I\'m a senior web developer / designer for <a href="http://www.curveagency.com" title="Go to: curveagency.com">Curve Agency</a>, which is based in Leeds. I\'ve been passionate about all things web for over 12 years now and since completion of an honours degree in <a href="http://www.hud.ac.uk/courses/course/index.php?ipp=00000146" title="Interactive Multimedia: Course Page - External Link">Interactive Multimedia</a> at the <a href="http://www.hud.ac.uk/" title="The University of Huddersfield website - External Link">University of Huddersfield</a> in 2005 I\'ve worked with some great clients and colleagues.</p>');	
			}
		
	}
	
	elementCheck();

	
});
