/*	-----------------------------------------------
	linous media | communication design & development
	http://www.linous-media.de

	NOTE:
	This file is protected: copyright by linous media
	---------------------------------------------- */ 

/* B A N N E R S H O W */

$(document).ready(function(){
    $('#bannerBox').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 7000
	});
});


/* SHOW AND HIDE */
function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}


