$(document).ready(function() {

//	$('#main-wrap.Press .video-holder h4:last').css({
//		marginBottom: "20px"
//	});
	$(".nav li").css({
		cursor: "pointer"
	});

	$(".nav li div").css({
			opacity: 0
	});
	$(".nav li").hover(function () {
		$(this).children("a").stop().animate({
			color: "#00A3D7"
		}, 300);
	}, function () {
		$(this).children("a").stop().animate({
			color: "#ffffff"
		}, 400);
	});
	
	
	$(".nav li").click(function(){
		$target = $(this).find("a").attr("href");
		window.location = $target;
		return false;
	}); 
	
	$('.video-holder p:last').css({
		borderBottom: "none"
	});

});
