$(document).ready(function(){
	$(function() {

	//$("ul.sidenav").accordion({ active: $("ul.sidenav>li.active").index() });
	$("#breadcrumb ul li:last-child a").addClass("active");
	blankWin();
	$("#map").gMap({ 
		markers: [{ 
			latitude: 51.6815639,
       		longitude: 5.3897033
       	}],
       	zoom: 15
    });
	
	});
});

function jsAlert(title,content)
{
	var boxHeight = 300;
	var box = '';
	    box += '<strong>'+title+'</strong><br/><br/>'
	    box += '<p>'+content+'</p>'
			  $.fn.prettyPhoto({social_tools:false,theme:'facebook'});
			  $.prettyPhoto.open('/images/logo-popup.png', '','<h3 class="center">'+title+'</h3><br/><br/><p class="black font11 center">'+content+'</p><br/>');
}
function blankWin()
{
	var hostname = window.location.hostname; hostname = hostname.replace("www.","").toLowerCase();
	$('a[href*="/"]').each(function(){ 
		href = $(this).attr('href'); if (href.indexOf("http://")!=-1 && href.indexOf(hostname)==-1) $(this).attr('target','_blank');
	});
};
