/* js for Baars Bloembinders */

$(document).ready(function(){

	$("#onlinebestellen").click(function(){
		window.location = 'index.php?pag=bestellen';
	});
	
	$(".datepicker").datepicker({ dateFormat: 'dd-mm-yy' })
	
	$("a[rel='external']").click(function(){
		$(this).attr({target: "_blank"});
	});		

	$("#store_highlights li").tooltip({
		track:true	
	});
}); 
