var colors = ["rgb(255,215,121)","rgb(0,154,166)","rgb(187,0,58)","rgb(244,121,32)","rgb(144,202,111)"]

$(function(){
	$("#slideshow").cycle({
		fx:'fade',
		speed:500,
		easing:'linear'
	})
	
	if($('.column.two').length == 3){
		$('.column.two h2').each(function(){
			$(this).nextUntil('h2').andSelf().wrapAll('<div class="subcolumn">')
		})
	
		var i = 0;
		$('.subcolumn').each(function(){
			$(this).css('background-color',colors[i])
			i = (i + 1) % 5
			$(this).find('p').each(function(){
				if($(this).html().match(/^\s*<a.*>\s*$/)){
					$(this).find('a').addClass('button').after('<div class="clear"></div>')
				}
			})
		})
	}
	
	$('input, textarea').placeholder();
})
