$(document).ready(function() {
	$("input#search").focus(function() {
				if($(this).attr("value") == "Søg..."){
					$(this).attr("value", "");
				}
		});
	
	$("input#search").blur(function() {
			if($(this).attr("value") == ""){
				$(this).attr("value", "Søg...");
			}
		});
	
	$('div#contentContent h1').first().css('margin-top', '0px');
	$('div#contentContent h1').next('h2').css('margin-top', '0px');
	
	//Logos
	$("div#logoIMU, div#logoLMU, div#logoLMM, div#logoIMM").fadeTo(0, 0.5);
	$("div#logoIMU, div#logoLMU, div#logoLMM, div#logoIMM").hoverIntent(
		function() {
			$(this).fadeTo(350, 1);
		
		},
		function() {
			$(this).fadeTo(350, 0.5);
		
		}
	);
});
