/*
    Document   : jquery.to.do.js
    Created on : Oct 7, 2009, 16:21:38 PM
    Author     : Christian Philippsen
    Company    : Impuls Reklamebyrå AS
    Description:
    
    Purpose of the javascript follows.
*/

$(document).ready(function() {

	Cufon.replace('#content h1, #content h2', {
		color: '-linear-gradient(#333, #000)'
	});

	Cufon.replace('.col1 h1, .col2 h1, .col3 h1', {
		color: '-linear-gradient(#666, #222)'
	});
	
	Cufon.replace('#navigation li a', {
		hover: {
			textShadow: '1px 1px #000'
		}
	});

    $("#banner, #subBanner").cycle({
			fx: 'fade',
			speed: 1000,
			sync: true,
			timeout: 4000,
			random: 1
	});
	
});

