var root = "/";

$(document).ready(function(){
	if($.browser.firefox() && $.browser.mac()){
		$('.workwrap .titel .infowrap .info').css({
			margin: "2px 10px 0 10px"
		});
		$('.workwrap .titel .datumwrap .datum').css({
			margin: "2px 10px 0 10px"
		});
		$('#footercolumns .col h2').css({
			padding: "4px 5px 3px 20px"
		});
	}
	if($.browser.msie() && $.browser.version.number() == 7){
		$(".workwrap .titel").each(function(){
			var correctie = $(this).children('.infowrap').width() + $(this).children('.datumwrap').width();
			$(this).children('.shadow').css({
				margin: "18px 0 0 -" + correctie + "px"
			});
			$(this).children('.corner').css({
				margin: "18px 0 0 -" + correctie + "px"
			});
		})
	}
	if($.browser.msie()){
		$("#cats ul li").each(function(){
			$(this).children('a').corner("3px");
		})
		$("#cats ul li.selected").each(function(){
			$(this).corner("3px");
		})
		$("#footercolumns .col h2").each(function(){
			$(this).corner("3px");
		})
		$(".testimnialblok").each(function(){
			$(this).corner("3px");
		})
		$("#footercolumns .col .item").each(function(){
			$(this).corner("3px");
		})
		$("#work .workinfo .text ul.buttons li").each(function(){
			$(this).children('a').corner("3px");
		})
	}
	$(".workwrap").hover(function(){
		$(this).children('.titel').children('.datumwrap').css({
			background: "#000"	
		});
		$(this).children('.titel').children('.infowrap').css({
			background: "#c0d83c"	
		});
		$(this).children('.titel').children('.datumwrap').children('.datum').css({
			color: "#fff"	
		});
		$(this).children('.titel').children('.infowrap').children('.info').css({
			color: "#2d3036"	
		});
		$(this).children('.thumb').children('.image').animate({"opacity": "0.8"}, "fast");
		//$(this).children('.titel').animate({"top": "-=80"}, "500");
	}, function(){
		$(this).children('.titel').children('.datumwrap').css({
			background: "#c0d83c"	
		});
		$(this).children('.titel').children('.infowrap').css({
			background: "#000"	
		});
		$(this).children('.titel').children('.datumwrap').children('.datum').css({
			color: "#2d3036"	
		});
		$(this).children('.titel').children('.infowrap').children('.info').css({
			color: "#fff"	
		});
		$(this).children('.thumb').children('.image').animate({"opacity": "1"}, "fast");
		//$(this).children('.titel').animate({"top": "+=80"}, "500");
	})
	$("#aboutright").each(function(){
		var correctie = $("#aboutleft").height() - 30;
		$(this).css({
			minHeight: correctie + "px",
			height: correctie + "px",
			overflow: "hidden",
			display: "block"
		});
	})
	$("#contactright").each(function(){
		var correctie = $("#contactleft").height() - 12;
		$(this).css({
			//minHeight: correctie + "px",
		});
	})
	
	$('#viewall a').click(viewall);
	
	function viewall() {	
		$('#viewall').fadeOut(400, function(){
			$(this).replaceWith('<div id="viewall">(viewing all)</div>');
		});
		$('#aboutright #testimonialswrap').fadeOut(400, function(){
			$(this).load(root + 'pages/testimonials.php', function(){
				$(this).fadeIn(400, function(){
					$('#aboutright').animate({
						height: $('#aboutright #testimonialswrap').height() + 25 + "px"
					});
				});
			});
		});
	}
		
});

function showyoutubefullscreen(id) {
	newwindow=window.open('http://www.youtube.com/watch_popup?v=' + id + '&hd=1','','width=640, height=480, scrollbars=0, resizable, dependent');
	newwindow.moveTo(0,1);
	newwindow.resizeTo(window.screen.availWidth,window.screen.availHeight-1);
}
