$(document).ready(function(){
	$('a.lightbox').lightBox(); 
	$('#theSamePage li a').click(function(){
		$(this).parent().attr('class','active');
		
		$('#theSamePage li').each(function(){
			$(this).attr('class','');
		});
		
			$(this).parent().attr('class','active');
		
	});
	
	$('a#one,a#two').click(function(){
		return false;
	});
	var main = new html24();
	if($(".horizontalSlider").length){
		var horizontalSlider = new main.galleryScroller({
			listeners: {
				horizontal: [$(".horizontalSlider:first")[0]],
				vertical: []
			},
			galleryContainer: $("#scrollableArea-menu")[0],
			galleryWrapper: $(".horizontalSlider:first")[0],
			scrollWrapper: $("#scroller-menu")[0],
			acceleration: 1, /*change only if advanced user*/
			});
		horizontalSlider.init();
		
		
		
		$(".horizontalSlider ul li").mouseover(function(){
			if (!$(this).hasClass('active')){
				var position = $(".horizontalSlider ul li").index(this)+1;
				$(this).parent().find('li').each(function(){
					$(this).removeClass('active');
				});
				$(this).addClass('active');
				$('.horizontalSlider img').fadeOut('slow');
				$('.horizontalSlider img#slider-'+position).fadeIn('slow');
			}
		});
		
	}
	
	
});