/*==================================*/
/*		common functions			*/
/*==================================*/
/**
 *
 */
function goTo(url)
{
	document.location.href = url;
}

/*==================================*/
/*		document ready functions	*/
/*==================================*/
$(document).ready(function()
{
	/**
	 *	position contact
	 */
	var content_height = $('#content_height').offset();
	
	//$('#contact').css('top', ((content_height.top - 161) - parseInt($('#content').height()))+'px');
	$('#content_left').css('height', ((content_height.top ) - parseInt($('#content').height()))+'px');
	
	/**
	 *	referentie hover
	 */
	$('a.referentie').hover(function()
	{
		$(this).find('span').fadeIn(150).css('display', 'block');
	}, function()
	{
		$(this).find('span').fadeOut(150);
	});
	
	/**
	 *	referentie photos
	 */
	$('div.photos img').click(function()
	{
		var src  = $(this).attr('src').replace("thumb", "large");
		var href = src.r8eplace("large_", ""); 
		
		$('a.main img').fadeOut(200, function()
		{
			$(this).attr('src', src).parent().attr('href', href);
			
			$(this).fadeIn(200);
		});
	});
});
