$(document).ready(function() {

	//TAKE LEFT MARGIN OFF FIRST LIST ITEM IN MENU (HOME)
	$("header#header nav ul li:first").css({marginLeft: 0});
	
	$(".contentScroller .right article").mouseenter(function() {
		$(".over", this).animate({
			top: "0"
		}, 500);
	}).mouseleave(function() {
		$(".over", this).animate({
			top: "160px"
		}, 500);
	}).click(function() {
		window.location = $("h2 a", this).attr("href");
	});
	
	$("#pop .close").click(function() {
		$("#pop").fadeOut(400, function() {
			$(this).remove();
		});
	});
	
	//IF CONTENT ISN'T LONG, HIDE SECOND SIDE ARTICLE
	if ($("#content").height() < 600) {
		$(".sideBit:eq(1)").hide();
	};
	
	//CYCLE HOMEPAGE IMAGES.
	if ($("#homeCarousel").size()) {
		$("#homeCarousel").append("<div id=\"homeCarouselNav\"></div>").cycle({
			fx: "scrollLeft",
			slideExpr: "img",
			timeout: 5000,
			speed: 1500,
			pause: 1,
			pager: "#homeCarouselNav"
		});
	};


});
