$(document).ready(function() {

	/* LAST CHILD */
	$(function(){
	   $("#content-info ul.menu li:last-child").css("border-right","0px")
	})
	
	/* PLACEHOLDER */
	$(function() {
	 $('input, textarea').placeholder();
	});

	/* RESPONSIVE MENU */
		// Create the dropdown base
		$("<select />").appendTo("nav");
		
		// Create default option "Go to..."
		$("<option />", {
		   "selected": "selected",
		   "value"   : "",
		   "text"    : "Gå til..."
		}).appendTo("nav select");
		
		// Populate dropdown with menu items
		$("nav a").each(function() {
		 var el = $(this);
		 $("<option />", {
			 "value"   : el.attr("href"),
			 "text"    : el.text()
		 }).appendTo("nav select");
		});
		
		$("nav select").change(function() {
		  window.location = $(this).find("option:selected").val();
		});

});
