$(document).ready( function () {
    $("#nav a").click(function () {
	$("#nav a").css({"font-size" : "1em", "font-weight": "normal", "color": "#888" });
	$(this).css({"font-size" : "1.5em", "font-weight": "bold", "color": "#fff" });
	$.ajax({
	    url: $(this).attr("href"),
	    type: "get",
	    dataType: "html",
	    success: function (data) {
		$("#pics").html(data);
		$("#pics").cycle({
		    fx: 'slideY',
		    pause: 1,
		    next: "#ctrlRight",
		    prev: "#ctrlLeft", 
		    fit: true
		});
	    }
	});
	return false;
    });

    $("#nav a:first").click();    
});
