		
		$(document).ready(function(){
			
			// thums color
			opacity_speed = 500;
			$("UL.thumbs_list LI A IMG.img_color").css('opacity', 0);
			$("UL.thumbs_list LI A")
			.bind('mouseenter', function(){
				
				$("IMG.img_color", this).animate({
					
					'opacity': 1
					
				}, opacity_speed);
			
				
			})
			.bind('mouseleave', function(){
				
				$("IMG.img_color", this).animate({
					
					'opacity': 0
					
				}, opacity_speed);
				
			});
			
			// first, last classes...
			$("#panel_list LI:first").addClass('first').addClass('expanded');
			$("#panel_list LI:last").addClass('last');
			
			$("#panel_list").addClass('items' + $("#panel_list LI").length);
			
			// prev btn
			$(".btn_prev").click(function(){
				panel_actions($("#panel_list LI.expanded").prev());
				return false;
				
			});
			
			// next btn
			$(".btn_next").click(function(){
				panel_actions($("#panel_list LI.expanded").next());
				return false;
				
			});
			
			$("#panel_list LI").click(function(){
				panel_actions($(this));	
			})
			
			

			// lightbox
			$(".lightbox").lightbox();
			
			$(".thumbs_list LI:nth-child(3n)").addClass('last');

			
		});
		
