$(document).ready(function() {
	// Forside
 $("#gallery").cycle({
		fx: 'scrollLeft',
		timeout: 5000,
		pause: 0,
		next: '#gallery'
	});
	
	// Prosjekter
	$("ul.grid-list li").click(function(){
	     window.location=$(this).find("a").attr("href");
	     return false;
	});
	
	$("ul.grid-list li").hover(
		function(){
			$(this).children("div.grid-overlay").stop(true, true).fadeOut();
			$(this).children("div.grid-title").stop(true, true).fadeOut();
			return false;
		},
		function(){
			$(this).children("div.grid-overlay").stop(true, true).fadeIn();
			$(this).children("div.grid-title").stop(true, true).fadeIn();
			return false;
	});

	// Prosjektview	
	// $("#content-media").hover(
	//	function(){
	//		$(this).children("div.arrow-left, div.arrow-right").stop(true, true).fadeIn();
	//		return false;
	//	},
	//	function(){
	//		$(this).children("div.arrow-left, div.arrow-right").stop(true, true).fadeOut();
	//		return false;
	// });
	
	$("#content-media-video").hide();
	
	$("#content-media-videooverlay img").click(function () {
		$("#content-media-video").show();
		$("#content-media-videooverlay img").fadeOut();
	});
});
