			jQuery(document).ready(function($){
				
				$("#featued-slider").jCarouselLite({
        			btnNext: "#next",
      				btnPrev: "#prev",
					circular: false
    			});

				
				$('#bottom .moduletable').addClass('grid_3');
				
				$('ul li:last-child').addClass('last-child');
				$('ul li:first-child').addClass('first-child');
				
				$('#top1 .block').hover(
					function(){
						$(this).addClass('active');
						$(this).siblings().removeClass('active');
					}
					)
					
				$('#top1 .block').eq(0).addClass('first');
				$('#top1 .block').eq(1).addClass('second');
				$('#top1 .block').eq(2).addClass('third active');
				$('#top1 .block').eq(3).addClass('fourth');
				
				});

