$(document).ready(function(){
	$('#btn_email4media').click(function() {
	  $(this).fadeOut();
	  $("#email4media_widget_box").delay(400).fadeIn();
	});
});

$(document).ready(function() {
	$('.fourth a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({color: col},500);
	},function() { //mouseout
		$(this).animate({color: col},500);
	});
});

