jQuery.noConflict();

jQuery(document).ready(function() {
	// Init Webeo Slideshow
	webeo_slideshow();
	
	webeo_clickable();
	
	// Init jQuery prettyPhoto to all rel="prettyPhoto" links 
	jQuery("a[rel^='prettyPhoto']").prettyPhoto();
});

/*
 * 	Webeo Frontpage Slideshow
 */
webeo_slideshow = function() {
	jQuery('#slides').cycle({
		fx:'fade',
		timeout:8000,
		next:'#next',
		prev:'#prev',
		pause: 1,
		random: 1
	})
}

/*
 * Webeo Clickable
 */
webeo_clickable = function() {
	jQuery('.column')
	  .click(function(){
		  var heading = jQuery(this).children("h2");
		  var link = jQuery(heading).children("a");
		  var url = jQuery(link).attr("href");

		  jQuery(location).attr('href',url);
		  }
	  )
}