// HD Base T JavaScript Document

$(document).ready(function() {
	
	/* home */
	if ($('body').hasClass('home')) {
		
		$('#slideshow2 span').each(function(i) {
			var containerHeight = $(this).parent().height();
			var companyHeight = (containerHeight - $(this).height()) / 2;
			$(this).css({'padding-top': companyHeight});				
		});
		/* add cycle to slideshow
		 * ex: http://malsup.com/jquery/cycle/test/jul25.html */
		$('#slideshow').cycle({
							  fx:     'fade',
							  speed:   500,
							  timeout: 7000,
							  next:   '#slideshow',
							  pause:   1
							  });
		
		/* add cycle to slideshow2 */
		$('#slideshow2').cycle({
							  fx:     'fade',
							  speed:   500,
							  timeout: 3000,
							  pause:   1
							  });
	}

});
