$(document).ready(function() {
	$(".sidebar-cell").after('<img src="/images/sidebar-cell-shadow.png" width="225" height="7" style="margin: -25px 0 30px;" />');
	
	$('#quotes-box .quote').each(function() {
			$(this).mouseenter(function() {
			    $(this).find(".quote-full").slideDown();
				
				
		    }).mouseleave(function(){
			    $(this).find(".quote-full").slideUp();
			});
	});
	
	// SLIDESHOWS
	$('#quotes').cycle({ 
    fx: 'fade',
	next: '#more-testimonials',
	timeout: 6000,
	pause:true,
	cleartypeNoBg: true
	});


    // DROPDOWN
	$('#nav li').hover(
		function () {
			$('ul', this).slideDown(200);
		}, 
		function () {
			$('ul', this).slideUp(100);			
		}
	);
	

	// CLICKABLE CONTAINER
	$('#forum-main tbody td').click(function() {
        var href = $(this).find("a").attr("href");
        if(href) {
            window.location = href;
        }
    });
	
	
	// STIPED TABLES
	
	$("table.forum-table tr:not(.forum-category)").addClass("hover-row");
	$("table.striped tr:odd").addClass("alt-row");
	
	

  });
