// JavaScript Document
// Background color animation
$(document).ready(function(){
$("nav a").hover(function() {
$(this).animate({ backgroundColor: "#2b2b2b" }, 150);
},function() {
$(this).animate({ backgroundColor: "#ffde00" }, 150);
});
// font color animation
$("nav a").hover(function() {
$(this).animate({ color: "#fff" }, 50);
},function() {
$(this).animate({ color: "#2b2b2b" }, 50);
});
});

$(document).ready(function(){
$("#socialize ul li a").hover(function() {
$(this).animate({ backgroundColor: "#ffde00" }, 400);
},function() {
$(this).animate({ backgroundColor: "#2b2b2b" }, 400);
});
});

$(document).ready(function(){
// font color animation
$("#socialize p a").hover(function() {
$(this).animate({ color: "#ffde00" }, 100);
},function() {
$(this).animate({ color: "#545454" }, 100);
});
});

$(document).ready(function(){
$("a.flckrprofile").hover(function() {
$(this).animate({ backgroundColor: "#fff" }, 200);
},function() {
$(this).animate({ backgroundColor: "#ffde00" }, 200);
});
});