var showBrowserAlert = false;

$(function(){
	/**
	 * Talen instellen voor iedere pagina
	 */
	if ($('form#formCountryLanguageSettings').size() == 1)
	{
		$('form#formCountryLanguageSettings a').click(function(){ 
			$('input#country').val($(this).attr('rel'));
			$('form#formCountryLanguageSettings').submit();
			return false; 
		});
	}

	/**
	 * Handler voor product sub-menu
	 */
	if ($('div.productgroupBoxBodyListitems ul li a').size() > 0 && $('img#productgroupBoxImg').size() == 1)
	{	
		$('div.productgroupBoxBodyListitems ul li a').each(function(){ 
			var groupImageId = $(this).attr('rel');
				groupImageId = parseInt(groupImageId.match(/\d+/gi));
//			if (groupImageId !== 0)
//			{
				$(this).hover(
					function()
					{
						$('img#productgroupBoxImg').attr('src', '/image/productgroupimage/' + groupImageId + '/group.jpg');
					},
					function()
					{
						return;
					}
				);
//			}
		});
	}
	
	/**
	 * Handler voor zoekformulier
	 */
	if ($('form#searchForm').size() == 1)
	{
		var obj = $('form#searchForm input#search')
		,	defaultValue = $(obj).val();
		
		$(obj)
			.click(function(){ 
				$(this)
					.val('')
					.focus(); 
			})
			.blur(function(){ 
				if($(this).val() == '')
				{			
					$(this).val(defaultValue);
				}
			});
			
		if ($('#searchBt').size() == 1)
		{
			$('#searchBt').click(function()
			{ 
				if ($(obj).val() != '' && $(obj).val() != defaultValue)
				{
					$('form#searchForm').submit();
				}
			});
		}
	}
});

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openPDF(url){
	openFileWindow(url, 850, 870, 'sitecomPdf');
}

function openAcrobatWindow(pid,typeid){
	MM_openBrWindow('download_acrobat.php?id='+pid+'&type='+typeid,'_blank','location=0,toolbar=0,menubar=0,resizable=1,status=0,scrollbars=no,width=550,height=400');
}

function openHighResImage(iid,iname){
//	MM_openBrWindow('showproductimagelarge.php?id='+iid+'&name='+iname,'_blank','location=0,toolbar=0,menubar=0,resizable=1,status=0,scrollbars=no,width=830,height=633');
	window.location = 'showproductimagelarge.php?id='+iid+'&name='+iname;
}

function openHighResImageAlt(iid,iname){
//	MM_openBrWindow('showproductimagelarge.php?id='+iid+'&name='+iname,'_blank','location=0,toolbar=0,menubar=0,resizable=1,status=0,scrollbars=no,width=830,height=633');
	window.location = '/high-resolution-images/press-results/showproductimagelarge.php?id='+iid+'&name='+iname;
}

function openFileWindow(file,w,h,win){
	if(!w){
		w=850;
	}
	if(!h){
		h=870;
	}		
	imgwin = window.open(file,win,'location=0,toolbar=0,menubar=0,resizable=1,status=0,width='+w+',height='+h);
	imgwin.focus();
	return imgwin;
}

function goTo(url){	
	document.location = url;	
}

function goToForTravel(url){	
	document.location = 'http://www.sitecom.com/'+url;	
}

function setStatus(txt){
	window.status=txt;
	return true;
}