jQuery(document).ready(function(){
		
	// style switcher
	jQuery('#switcher a').click(function() {
		setActiveStyleSheet(this.getAttribute("rel"));
		jQuery(this).siblings().removeClass('active').end().addClass('active');
		jQuery.cookie('size',$(this).attr('id'));
		return false;
	});
	
	jQuery('#'+jQuery.cookie('size')).click();	
	
	// menu hovers
	jQuery("#menu ul li").hover(
      function () {
        jQuery(this).addClass('hovered');
      }, 
      function () {
        jQuery(this).removeClass('hovered');
      }
    );
	
	// front box last
	jQuery('.frontBoxBig:last-child').css({"margin-right":"0"});
	
	// last sub sub menu item
	jQuery('ul.subMenu li li li a:last-child').addClass('lastSub');
	
	jQuery('#search-nl').val('Zoeken..');
	jQuery('#search-en').val('Search..');
	jQuery('#search-it').val('Search..');
	jQuery('#search-fr').val('Search..');
	jQuery('#search-de').val('Suche..');
	jQuery(function() {
   		jQuery('.inpTxt').focus(function() {
			jQuery(this).val('');
			});
	});

});


function PrintLink() {
	var url = document.location.href;  
	var newurl = url;
	if ( url.indexOf("?") > -1 ) newurl = newurl+'&typeP=1';
	else  newurl = newurl+'?typeP=1';
	
	window.open(newurl,'PrintPage','menubar=1,scrollbars=1,width=730,height=680');
}
