/* FFaded 0.3.2 – jQuery plugin http://github.com/nathansearles/Faded/blob/master/README.textile */
	$(function(){
		$('#faded').faded({
			autopagination: true,
			speed: 500,
			autoplay: 6000,
			autorestart: false,
			crossfade: false,
			loading: true
		});
	});
	
/* logo fade  */
	$(function(){
		$('a.logo img, .credit a img, .fade').hover(
			function() { $(this).fadeTo('fast',0.7);},
			function() { $(this).fadeTo('fast',1);}
		);
	});
	

/* make conainer box the link */
	$(function(){
		$(".jlink").css("cursor", "pointer");
		$(".jlink").click(function(){
				window.location=$(this).find("a").attr("href");return false;
		});
	});


////////////////// EXTERNAL SITES / OPEN NEW WINDOW //////////////////
$(document).ready( function() {
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    }); 
});


////////////////////////////// ADD ":" TO LABELS /////////////////////////////////////////////////////// by johan
$(document).ready(function() {
    $("label").append(":");
	$("a.more").append(" &raquo;");
});

