/**
 * @author THP - todderick@gmail.com
 */

$(document).ready(function() {
	//Page Change
	$(".color").click(function(){
		$("body").css("background-color", $(this).css("color"));
		document.getElementById('headString').innerHTML = $(this).attr("title");
	});
	
	//Content Change
	$(".contentColor").click(function() {
		$(".contentHolder").css("background-color", $(this).css("color"));
		$(".mainContent").css("border-color", $(this).css("color"));
	})
	
	//Social Media Icons Hover
	$(".social").hover(function() {
		$(this).animate({
			top: 20
		}, 300);
    }, function() {
		$(this).animate({
			top: 50
		}, 300)
	});
})

