/*
Filename: scripts.js 
Created: Cinnamon Interactive BV (DC).
Date: Wed May 18 10:38:55 CEST 2011
*/ 
 	$(document).ready(function() {
 	//cycle
		$('body#archangel.front .view-id-Home_slideshow .view-content').cycle({
			timeout:       3000,  // milliseconds between slide transitions (0 to disable auto advance) 
			speed:         3000,  // speed of the transition (any valid fx speed value) 
			pause:         1     // true to enable "pause on hover"
		});
 	//colorbox
 		$("body#archangel.node-type-project div.field a").colorbox({
			maxHeight: '90%',
			maxWidth: '95%'
		}).attr('rel','colorbox');
	//open link in new window
	        $('a.openwide').click(function(){
	        window.open(this.href);
	        return false;
	        });
 	});

