function gmCurrent(targetClass)
{
	var target = "." + targetClass + " a";
	$(target).addClass("current");
}


(function($){
	$.fn.shuffle = function() {
		return this.each(function(){
			var items = $(this).children();
			return (items.length)
			? $(this).html($.shuffle(items))
				: this;
			});
	}
 
	$.shuffle = function(arr) {
		for(
		var j, x, i = arr.length; i;
		j = parseInt(Math.random() * i),
		x = arr[--i], arr[i] = arr[j], arr[j] = x
		);
		return arr;
	}
})(jQuery);



$(document).ready(function(){
	$("h1").mouseup(function(){
		location.href = "/";
		return false;
	});
	$("h1").css("cursor", "pointer");


	$(".openBlank").click(function(){
		window.open(this.href, '_blank', '');
		return false;
	});

});
