/***********************************************************************

Author:     Arno Hoogma
URL:        http://www.4rn0.nl

***********************************************************************/


if (typeof window.jQuery != 'undefined') {
	
	$(function()
	{

		initExternalAnchors();
		initAlignment();
		
		if ($.browser.msie) {
			
			initResizeContent();		
			$(window).resize(initResizeContent);
			
		}
	
	});
	
	
	/**
	 * Alignment
	 */
		
	function initAlignment()
	{
		
		// $('ul#navigation li a:contains(Trainingen en schriftelijke communicatie)').html('<span>Trainingen en</span> schriftelijke communicatie');
		//
		// $('img.right').each(function(i,n) {
		// 	
		// 	$(n).load(function() {
		// 		var offset = parseInt(150 - $(this).width());
		// 		$(this).css('margin-right', offset + 'px');
		// 	});
		// 	
		// });
		
	}
	

	/**
	 * External links
	 */
	
	function initExternalAnchors()
	{
		
		$('a[rel=external]').attr('target', '_blank');
		
	}
	
	
	/**
	 * Resize
	 */
	
	function initResizeContent()
	{
		
		if ($('body').width() < 900) {
			$('div#content:not(.detail)').css('width', '405px');
		}
		
		else {
			$('div#content:not(.detail)').css('width', '600px');
		}
		
	}
	
}