﻿function onDocLoad() {
	$(".slideshow").imageSlider();
    $("select").dropdown({arrowContent:"&#x25bc;"});
    $(":checkbox").checkbox({ baseClass : "checkbox", checkedClass : "checkbox-on", focusClass : "checkbox-focus", content : "<b>&times;</b>" });
	$(":radio").checkbox({ baseClass : "radio", checkedClass : "radio-on", focusClass : "radio-focus", content: "<b></b>" }); //"<span>&#x25CB;<b>&#x25CF;</b></span>"
	$("input[placeholder]").placeholder();
	//$("a[rel='gallery']").colorbox({current: "Billede {current}/{total}", opacity: 0.8});
	$("a.gallery").fancybox({
		overlayOpacity: 0.85,
		overlayColor: "#000",
		padding: 5,
		margin: 0,
		type: "image",
		titleFormat: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="img-count">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span><span class="title">' + title + '</span>';
		}
	});
	$("a.popup").fancybox({
		overlayOpacity: 0.85,
		overlayColor: "#000",
		padding: 0,
		width: 600,
		height: 400
	});
	$("input[type='file']").fileField();
	$("textarea").charcount({
		counterHtml : '<p class="info">{current}/{max} tegn brugt</p>',
		max : "detect" // Detect from either maxlength or rel="maxlength:xxx"
	});
	
	/* Activate header login 
	/*$("#header .actions .login > a").click(function(e){
		$(this).parent().toggleClass("active");
		e.preventDefault();
	});*/
}

$(onDocLoad);
