$(document).ready(function() {
	// remove border from first menu item
  $('#menu').find('li:first a').css('border-left', '0');
  // remove right margin on the last box in ".field"
  $('.field').find('.fourcoloumn:last').css('margin-right', '0');
  // remove right margin from odd ".contact-card"
  $('.contact-card:odd').css('margin-right', '0');
  // remove right margin from last ".field"-block
  $('.field').find('.block:last').css('margin-right', '0');
  //fixing article image margin
	$('div.text img[style*="float: left;"]').css('margin-left', '0');
	$('div.text img[style*="float: right;"]').css('margin-right', '0');
  // remove border from last event-info-item
  $('#eventinfo').find('dd:last').css('border-right', '0');
	// Remove bottom border from last tr i "#timeplan"
	$('#timeplan').find('tr:last').find('td').css('border-bottom', '0');
	// Add info on "reservasjoner"
	$('.reserved').find('span').mouseover(function() {
		$(this).parent().find('div').show();
	})
	$('.reserved').find('div').mouseout(function() {
		$(this).hide();
	})
	// add search function to reservations
	$('#find-week-but').click(function() {
		if ($('select[name="year"]').val() != '') {
			if ($('#reserv-category').val() != '') {
				window.location = '/reservasjoner/'+$('#reserv-category').val()+'/'+$('#find-week-field').val()+'-'+$('select[name="year"]').val();
			}
		}
	});
	$('#find-week-field').keyup(function(e) {
		if ($('select[name="year"]').val() != '') {
			if ($('#reserv-category').val() != '') {
				if(e.keyCode == 13) {
					window.location = '/reservasjoner/'+$('#reserv-category').val()+'/'+$('#find-week-field').val()+'-'+$('select[name="year"]').val();
				}
			}
		}
	});
	// add search function to the archives
	$('#find-news-month').click(function() {
		if ($('select[name="year"]').val() != '') {
			if ($('select[name="month"]').val() != '') {
				window.location = '/nyheter/'+$('select[name="month"]').val()+'-'+$('select[name="year"]').val();
			}
		}
	});
	$('#find-news-query').click(function() {
		if ($('#newsquery').val() != '') {
			window.location = '/nyheter/sok/'+$('#newsquery').val();
		}
	});
	$('#newsquery').keyup(function(e) {
		if(e.keyCode == 13) {
			window.location = '/nyheter/sok/'+$('#newsquery').val();
		}
	});
	$('#find-event-month').click(function() {
		if ($('select[name="year"]').val() != '') {
			if ($('select[name="month"]').val() != '') {
				window.location = '/kalender/'+$('select[name="month"]').val()+'-'+$('select[name="year"]').val();
			}
		}
	});
	$('#find-event-query').click(function() {
		if ($('#eventquery').val() != '') {
			window.location = '/kalender/sok/'+$('#eventquery').val();
		}
	});
	$('#eventquery').keyup(function(e) {
		if(e.keyCode == 13) {
			window.location = '/kalender/sok/'+$('#eventquery').val();
		}
	});
	$('#registrationform').submit(function() {
		if ($('#id_navn').val() == '' && $('#id_telefonnummer').val() =='') {
			$('#regfail').html('Vennligst fyll inn korrekt navn og telefonnummer').css('display', 'block');
			return false;
		}
		else {
			return true;
		}
	});
});

