$(document).ready(function() {

$("a.hasDesc").click(function() {
	$thisId = $(this).attr("href");
	$($thisId).fadeIn("fast");
	return false;
});

$("a.close").click(function() {
	$(this).parents("#wtf").fadeOut("slow");
});

// iPhoto effect Skim plugin
$(window).bind("load", function() {
    $(".skim").skim();
});

});
