$(document).ready(function () {

		// TOGGLE MENU
		$('#subnav').hide()
		$('#trigger').click(function() {
 		$('#subnav').toggle('slow', function() {
		});
	});

    
    //Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//Mr. Arnolds fire spitting inline editing
	$(".modalbox_edit").colorbox({overlayClose:false, opacity:0.6, width:"90%", height:"90%", iframe:true, close:"Close and reload", onClosed:function(){location.reload();}});
	
	//open all external links in new windows
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");
	
});
