//============================================================================
// Name        	: layout.js
// Author      	: CLB De Klaver
// Date		: 01/08/2009
// Version     	: 0.1
// Description 	: Layout scripts for clb de klaver site
//============================================================================

// Variable containing absolute path for images
var serverPath = "http://www.clbdeklaver.be";

/************************************************************************ 
 * TOP LINKS - links in the top right corner of the page 		*
 ************************************************************************/

$( function () {
	$('#topLinks li:not(.img)').hover(
		function () {
			$(this).css({'background' : 'url(\'' + serverPath + '/images/layout/topLinksActive.png\') repeat-x'});
		}, function () {
			$(this).css({'background' : 'transparent'});
		}
	);
});

/************************************************************************ 
 * EXTERNAL LINKS - add external links image 				*
 ************************************************************************/
 
$( function () {
	// Add an image indicating it's an external link we're dealing with
	$('.external').append("&nbsp;<img src=\"" + serverPath + "/images/layout/externalLink.png\" alt=\"External link\" />");
});

