$(document).ready(function() {
/*
	// ** LINE BREAKS ** //
	$('ul#Menu2 a').each(function(){
	    var me = $(this)
	       , t = me.text().split(' ');
	    me.html( '<span>'+t.shift()+'</span> '+t.join(' ') );
	});
	*/

	// ** NEWS LIST CLICKABLE DIVS ** //
	//$("ul#newslist li").click(function(){
	//	window.location=$(this).find("a").attr("href");
	//	return false;
	//});

	
	// ** FRONT PAGE FADE TRANSITIONS ** //
	$('#fade').innerfade({
		speed: 4000,
		timeout: 8000,
		type: 'sequence',
		containerheight: '260px'
	});
	$('#fadeBox .message').delay(16000).fadeIn(600);
	//$("#fadeBox p").append(" <img src='themes/danatraad/images/bullet.png' />");
	
	$('a.lightbox').lightBox(); // Select all links that contains lightbox in the attribute rel
	/*
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
	// This, or...
	$('#gallery a').lightBox(); // Select all links in object with gallery ID
	// This, or...
	$('a.lightbox').lightBox(); // Select all links with lightbox class
	// This, or...
	$('a').lightBox(); // Select all links in the page
	// ... The possibility are many. Use your creative or choose one in the examples above
	*/
	
});
