// JavaScript Document
// Standard functions to be called after page load
<!--


/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);

var maxWidth  = 130;
var maxHeight = 130;
var windowHandle = null

function PrintContent(){
//	windowHandle = window.open('about:blank','printer','width=620,height=400');
	windowHandle = window.open('','printer','width=620,height=400');
	var tmp = windowHandle.document;
	tmp.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n');
	tmp.write('<html xmlns="http://www.w3.org/1999/xhtml">\n');
	tmp.write('<head>\n');
	tmp.write('<title>FZ</title>\n');
	tmp.write('<link href="/css/print.css" rel="stylesheet" type="text/css" />\n');
	tmp.write('</head>\n');
	tmp.write('<body>\n');
    //Write Header to popup
	tmp.write('<img src="/images/logo_fz_print.gif" /><br />\n');
	//Write Content to popup
    tmp.write('<div id="content">' + document.getElementById('print').innerHTML) + "</div>\n";
	//Write Copyrights to poppup
    tmp.write('<p><b>Copyright 2008 Copyright Reed Business</b></p>\n');	
 	tmp.write('</body>\n');   
 	tmp.write('</html>\n');   
 	tmp.close();  	
    windowHandle.print();
    windowHandle.close();	
}

function updateWindow() {


  //  setTimeout('windowHandle.close();',500);
}


function scaleImage(im) {

  if (typeof im.naturalHeight == 'undefined') im.naturalHeight = im.height;
  if (typeof im.naturalWidth == 'undefined') im.naturalWidth = im.width;
  
  if (im.naturalWidth> maxWidth) {

    im.width = maxWidth;
///	 im.height = maxHeight;
    im.style.maxWidth = im.naturalWidth + 'px';
///	 im.style.maxHeight = im.naturalHeight + 'px';
    im.className = 'resized';
   // im.title = 'Klik voor originele grootte';
   // im.onclick = unscaleImage;

  }

}

function unscaleImage() {

  if (this.height == maxHeight) {
	if (this.naturalHeight < 468){
		this.height = this.naturalHeight;
		this.style.borderWidth = '0px';
		this.title = 'Klik om te verkleinen';
	}
	else{
		newWindow=window.open(this.src,'newWin','width='+this.naturalWidth+',height='+this.naturalHeight+',toolbar=no');
		newWindow.document.write('<html><head><title>'+this.alt+'(Large Image)<\/title><style>body{margin:0;}<\/style><\/head><body><img src="'+this.src+'" alt="'+this.alt+'"><\/body><\/html>');
		newWindow.focus();		
	}

  } else {
	
    this.height = maxHeight;
    this.style.borderWidth = '2px';
    this.title = 'Klik voor de orginele grootte';

  }
}

function mp(url){
	window.location.href= '#';
	window.location.href= url;
}

function outLinks(myURL){
	linkTarget="_blank";
	for (var i=0; i<=(document.links.length-1); i++){
		isExternal=((document.links[i].href.indexOf("http://")!=-1)&&(document.links[i].href.indexOf(myURL)==-1))
		if(isExternal){	
			document.links[i].target = linkTarget;
		}
		else{
			if (document.links[i].href.indexOf("#") == 0 ){
				document.links[i].target = "_top";	
			}				
		}
	}
}


function domResize() {
	if (navigator.userAgent.match(/Opera (\S+)/)) {
		var operaVersion = parseInt(navigator.userAgent.match(/Opera (\S+)/)[1]);
	}
	if (!document.getElementById||operaVersion <7) return;
	var imgarr=document.getElementsByTagName('img');	
	for (i=0;i<imgarr.length;i++){
				
		if (imgarr[i].className.indexOf('domresize')!=-1){
			imgarr[i].onload=function(){
				scaleImage(this);
			}
			scaleImage(imgarr[i]);
		}
	}
}

function addToFavorites() { 
	if (window.external) { 
		window.external.AddFavorite(location.href,document.title) 
	} 
	else { 
		alert("Deze functie wordt niet ondersteunt door uw internet browser.");
	}
}

jQuery(document).ready(function() {
								
  jQuery('ul.sf-menu').superfish();								
  
  var default_values = {};
  jQuery('#s, #sKeywords').each(function(i) {
    var index = jQuery(this).attr('name');
    var value = jQuery(this).val();
    default_values[index] = value;
  });

  jQuery('#s, #sKeywords').focus(function() {
	if(jQuery(this).val() === default_values[jQuery(this).attr('name')]) {
	  jQuery(this).val('');
	};
  })
});


domResize();

outLinks(document.domain);


// -->
