// JavaScript Document
$(document).ready( function(){
	
	//hover funktion for forside knapper
	$('img#first-button').hover(function() {
		$(this).attr("src","uploads/images/template/arrow-left-over.png");
		}, function() {
		$(this).attr("src","uploads/images/template/arrow-left.png");
	});
	
	$('img#second-button').hover(function() {
		$(this).attr("src","uploads/images/template/arrow-right-over.png");
		}, function() {
		$(this).attr("src","uploads/images/template/arrow-right.png");
	});
	
	
	
	
	var mainHeight = $("#content-main-center").height();
	var leftHeight = $("#content-main-left").height();

	
	if (!mainHeight){
		mainHeight = $("#content-main-center-wide").height();
		if( leftHeight < mainHeight ){
			$("#content-main-left").height(mainHeight+15);
		} else {
			$("#content-main-center-wide").height(leftHeight-15);
		}	
	} else {
		if( leftHeight < mainHeight ){
			$("#content-main-left").height(mainHeight+15);
		} else {
			$("#content-main-center").height(leftHeight-15);
		}	
	}


    $("#content-main-right embed").attr({ 
          width: "292",
          height: "244"
        });
	
	$("#search-area input").focus( function(){
	
		$("input").css({ color: "#666666" });
				
	});

});
