$(function(){
	$("#jquery-test").html("jQuery is loaded");
});

/*
	Function used to fade between black and white
*/
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});

function goToRandomPage() {
	var r=Math.floor(Math.random()*3);
	if (r == 0) {
		window.location = "http://somebodylove.me";
	}
	else if (r == 1) {
		window.location = "http://www.flickr.com/photos/krishna123";
	}
	else {
		window.location = "http://math1337.com";
	}
}
