// JavaScript Document
(function ($) {
$(document).ready(function() {
	// ########## jQuery scripts for website Kersten 2011 ##########
	// Author: Hans Grimm - www.grimm.nl - hans.grimm.nl
	// -----------------------------------------------------------------------------------------
	// CSS rules in this file are added when necessary, and are non-destructive for non-js users
	// in order to prevent screen jitter, always show a scroll track on the vertical plane
	// not essential, so put it here to ensure a valid css file :)
	// ##### LINKS IN DE FOOTER DE JUISTE CLASS GEVEN
   	 $("#main-menu").find("li").eq(0).addClass('cl0');
	 $("#main-menu").find("li").eq(1).addClass('cl1');
 	 $("#main-menu").find("li").eq(2).addClass('cl2');
 	 $("#main-menu").find("li").eq(3).addClass('cl3');
   	 $("#main-menu-home").find("li").eq(0).addClass('hl0');
	 $("#main-menu-home").find("li").eq(1).addClass('hl1');
 	 $("#main-menu-home").find("li").eq(2).addClass('hl2');
 	 $("#main-menu-home").find("li").eq(3).addClass('hl3');
	 $('.language-switcher-locale-url li:last a').attr('id','lastLangLink');
	 // shorten link text to 1st two characters
	 // $('.field-name-field-vcf span a').replaceWith('download visitekaart');
	 $('a.field-name-field-vcf').replaceWith('<h2>download visitekaart</h2>');
	 $('img.file-icon').hide();
	 $('.field-name-field-vcf a').html('<img src="http://www.btu-advocaten.nl/sites/default/files/vcf_icon.gif" />');
	 $('.language-switcher-locale-url li a').each(function(){
		// set variable from link text
		var langTitle = $(this).text();
		// set link text as title to preserve usability
		$(this).attr('title','' + langTitle + '');
		// now, crop that sucker!
		$(this).text($(this).text().substring(0,0));
		$('.language-link').eq(0).addClass('nlbutton');
		$('.language-link').eq(1).addClass('enbutton');
		//$('.nl').html('<div class="nlbutton">&nbsp;</div>');
	});

});
})(jQuery);;

