// JavaScript Document
$(document).ready(function() {
   // put all your jQuery goodness in here.
   
   $(function(){
		var path = location.pathname.substring(1);
		if ( path )
		$('.nav_main a[href$="' + path + '"]').attr('class', 'selected');
		$('.submenu a[href$="' + path + '"]').attr('class', 'selected');
		$('#navright a[href$="' + path + '"]').attr('class', 'selected');
	});
	
	$("#navtop_select").mousedown(function(){
		$("#navtop_drop_show").slideToggle("fast");
	});
	
	$("#navtop_drop_show").mouseleave(function(){
		$("#navtop_drop_show").slideToggle("fast");
	});
	
	$('#pop_gallery_small a').lightBox();
	$('#pop_gallery_large a').lightBox();
	
	$(".p1").click(function(){
		$(".d0").hide("fast");
		$(".d1").show("fast");
		$(".d2").hide("fast");
		$(".d3").hide("fast");
		$(".d4").hide("fast");
		$(".d5").hide("fast");
		$(".d6").hide("fast");
		$(".d7").hide("fast");
	});
	
	$(".p2").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").show("fast");
		$(".d3").hide("fast");
		$(".d4").hide("fast");
		$(".d5").hide("fast");
		$(".d6").hide("fast");
		$(".d7").hide("fast");
	});
	
	$(".p3").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").hide("fast");
		$(".d3").show("fast");
		$(".d4").hide("fast");
		$(".d5").hide("fast");
		$(".d6").hide("fast");
		$(".d7").hide("fast");
	});
	
	$(".p4").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").hide("fast");
		$(".d3").hide("fast");
		$(".d4").show("fast");
		$(".d5").hide("fast");
		$(".d6").hide("fast");
		$(".d7").hide("fast");
	});
	
	$(".p5").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").hide("fast");
		$(".d3").hide("fast");
		$(".d4").hide("fast");
		$(".d5").show("fast");
		$(".d6").hide("fast");
		$(".d7").hide("fast");
	});
	
	$(".p6").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").hide("fast");
		$(".d3").hide("fast");
		$(".d4").hide("fast");
		$(".d5").hide("fast");
		$(".d6").show("fast");
		$(".d7").hide("fast");
	});
	
	$(".p7").click(function(){
		$(".d0").hide("fast");
		$(".d1").hide("fast");
		$(".d2").hide("fast");
		$(".d3").hide("fast");
		$(".d4").hide("fast");
		$(".d5").hide("fast");
		$(".d6").hide("fast");
		$(".d7").show("fast");
	});
	
	$('#bannerlarge').cycle({
	fx: 'scrollLeft',
	speed: 400, 
	timeout: 6000,
	pager: '#pager',
	cleartypeNoBg: true,
	cleartype: true,
	pagerAnchorBuilder: function(idx, slide) { 
	return '<li><a href="#"><span>-</span></a></li>'; 
    } 
	});
	
	$('#bannersmall').cycle({
	fx: 'scrollLeft',
	speed: 400, 
	timeout: 6000,
	pager: '#pagersmall',
	cleartypeNoBg: true,
	cleartype: true,
	pagerAnchorBuilder: function(idx, slide) { 
	return '<li><a href="#"><span>-</span></a></li>'; 
    } 
	});

});
