/*

	www.rapide.nl - internet, hosting, ontwikkeling, vormgeving, telefonie

	             ,    )       ,      /                /
	 __  _  __     _ /  _      __  _/_  _  __ __  _ _/_
	/ __(_(_/_)_(_(_(__(/_  _(_/ (_(___(/_/ _/ (_(/_(__
	       /
	     _/

*/

if (window.console && console.log) {
	var $adv = '\n';
	$adv += 'www.rapide.nl - internet, hosting, ontwikkeling, vormgeving, telefonie\n';
	$adv += '                                                       \n';
	$adv += '             ,    )       ,      /                /    \n';
	$adv += ' __  _  __     _ /  _      __  _/_  _  __ __  _ _/_    \n';
	$adv += '/ __(_(_/_)_(_(_(__(/_  _(_/ (_(___(/_/ _/ (_(/_(__    \n';
	$adv += '       /                                               \n';
	$adv += '     _/                                                \n';
	$adv += '                                                       \n';
	console.log($adv);
}

function handleImageHrefs()
{
	$('.imageItem').find('img').each(function(i) {
		if($(this).attr('href'))
		{
			if($(this).attr('target') != '')
			{
				$(this).wrap('<a href="' + $(this).attr('href') + '" target="' + $(this).attr('target') + '" />')
			}
			else
			{
				$(this).wrap('<a href="' + $(this).attr('href') + '" />')
			}
		}

	});
}

$(document).ready(function() {
	// Handle Hrefs
	handleImageHrefs();
});
