$(document).ready(function(){
	// Handle the click on a link with class=external
	$('a.external').bind('click', function() {
		window.open($(this).attr('href'));

		return false;
	});
});

$(document).ready(function(){
	$('img#homeimage').hover(function() {
		$(this).attr('src', 'images/1on_home.gif');
	}, function() {
		$(this).attr('src', 'images/1off_home.gif');
	});
	$('img#overimage').hover(function() {
		$(this).attr('src', 'images/2on_over.gif');
	}, function() {
		$(this).attr('src', 'images/2off_over.gif');
	});
	$('img#partimage').hover(function() {
		$(this).attr('src', 'images/31on_particulieren.gif');
	}, function() {
		$(this).attr('src', 'images/31off_particulieren.gif');
	});
	$('img#zaakimage').hover(function() {
		$(this).attr('src', 'images/32on_zakelijk.gif');
	}, function() {
		$(this).attr('src', 'images/32off_zakelijk.gif');
	});
	$('img#tarievenimage').hover(function() {
		$(this).attr('src', 'images/4on_tarieven.gif');
	}, function() {
		$(this).attr('src', 'images/4off_tarieven.gif');
	});
	$('img#refimage').hover(function() {
		$(this).attr('src', 'images/5on_referenties.gif');
	}, function() {
		$(this).attr('src', 'images/5off_referenties.gif');
	});
	$('img#contactimage').hover(function() {
		$(this).attr('src', 'images/6on_contact.gif');
	}, function() {
		$(this).attr('src', 'images/6off_contact.gif');
	});
	$('img#publicatiesimage').hover(function() {
		$(this).attr('src', 'images/2on_publicaties.gif');
	}, function() {
		$(this).attr('src', 'images/2off_publicaties.gif');
	});
	$('img#linksimage').hover(function() {
		$(this).attr('src', 'images/2on_links.png');
	}, function() {
		$(this).attr('src', 'images/2off_links.png');
	});
});
