$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade',
		timeout: 6000,
		speed:   1000
	});
});


$(document).ready(function() {
    $('.slideshow2').cycle({
		fx: 'fade',
		timeout: 10000,
		speed:   1000,
		next:   '#next2', 
    	prev:   '#prev2'
	});
});

$(function() {
	$("div.phThPic:nth-child(6n)")	
	.addClass("rightBox");
}); 


function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	equalHeight($(".phThTxt"));
});
