var $j = jQuery.noConflict();

	//CYCLE ON TESTIMONIALS

$j(document).ready(function() {
    $j('#testimonials').cycle({
		fx: 'fade',
		timeout: 6000
	});
	
	
	//EQUAL HEIGHT COLUMNS
	//set the starting bigestHeight variable
	var biggestHeight = 0;
	//check each of them
	$j('#colophon .widget-area').each(function(){
		//if the height of the current element is
		//bigger then the current biggestHeight value
		if($j(this).height() > biggestHeight){
			//update the biggestHeight with the
			//height of the current elements
			biggestHeight = $j(this).height();
		}
	});
	//when checking for biggestHeight is done set that
	//height to all the elements
	$j('#colophon .widget-area').height(biggestHeight);
	
	$j('#primary .textwidget p:first-child').css("textTransform", "uppercase");
	$j('#primary .textwidget p:last-child').css("fontStyle", "italic");
	$j('#primary #text-3, #primary #text-4').css("marginBottom", "50px");
	$j('#content .hentry:last-child').css("margin", "0px");

});
