$(document).ready(
	function()
	{
		$('#breadCrumb li:last').addClass('last');
		$('.videoList li a').hover(	function() 
								{
									$(this).find('span.hoverBorder').show();
									$(this).find('span.videotitle').css("text-decoration","underline");
								},
								function() 
								{
									$(this).find('span.hoverBorder').hide();
									$(this).find('span.videotitle').css("text-decoration","none");
								});
		$(document).oneTime('800ms', function() {
								var heightLi = $('.videoList li:first').height();
								$('.videoList li').each(function()
										{
											var heightLiCurr = $(this).height();
											if (heightLi < heightLiCurr)
												{
													heightLi = heightLiCurr;
												}									
										});
								$('.videoList li').css("height", heightLi);
							 });

		$('.commentlist li.comment:even').addClass('gray');
		$('.commentlist li.comment').each(function()
									{
										$(this).find('div.commentAngle').css("height", $(this).find('.grayBoxTop').height());
										var padding = ($(this).find('.grayBoxTop').height() - $(this).find('.comment-author').height())/2;
										$(this).find('.comment-author').css('padding-top', padding);
									});
		}); 
