$(document).ready(function() {
	$("#loopedSlider").loopedSlider({
		autoStart: 5000,
		slidespeed: 600,
		restart: 600,
		autoHeight: true
	});
	
	$('#footer li:last').css('background-image', 'none');
	$('#footer li:first').css('padding-right', '0');
	$('#loopedSlider .slides a').colorbox();
	$('#sidebar li li:odd').addClass('alternate');
	$('#searchsubmit').val('');
	
	/* CALENDAR */
	
	$('#calNav a').click(function() {
		$('#calDay, #calMonth').hide();
		var t = $(this).attr('href');
		$(t).show();
		$('#calNav li.active').removeClass('active');
		$(this).parent().addClass('active');
		return false;
	});
	
	$('#nav ul li').each(function() {
		$(this).addClass('drop_parent');
	});
	
	$('#nav ul ul li').each(function() {
		$(this).removeClass('drop_parent');
	});
	
	
	$('.drop_parent ').find('a:first').mouseenter(function(e) {
		e.stopPropagation();
		/*
		var t = $(this);
		
		if( !t.parents('ul:eq(0)').hasClass('drop_down') && t.parent().children('ul').size() > 0 )
			t.css('background-image', 'url(http://ourclark.com/wp-content/themes/clark/images/arrow_down.png)');
		
		t.parent().children('ul').css('left', 'auto');
		t.parent().children('ul').addClass('drop_down');		
		t.parent().children('.drop_down').show();
		if( !( t.parent().children('.absolute_arrow').size() > 0 ) ) t.parent().append('<a class="absolute_arrow" href="#" onclick="$(this).parent().children(\'.drop_down\').hide(); $(this).parent().children(\'a:first\').css(\'background-image\', \'url(http://ourclark.com/wp-content/themes/clark/images/arrow.png)\'); return false;"></a>');
		*/
	});
	$('.drop_parent ').find('a:first').click(function() {
		var t = $(this);
		if( !( t.parent().children('ul').size() > 0 ) ) return true;
		if( ( t.parent().children('ul').size() > 0 ) )
			//t.attr("onDblClick", "window.open($(this).attr('href'),'_self')"); 
	t.dblclick(function(){window.open($(this).attr('href'),'_self')});
		if( !t.parents('ul:eq(0)').hasClass('drop_down') && t.parent().children('ul').size() > 0 )
			t.css('background-image', 'url(http://ourclark.com/wp-content/themes/clark/images/arrow_down.png)');
		
		$('.close-me').css( 'background-image', 'url(http://ourclark.com/wp-content/themes/clark/images/arrow.png)').parent().children( '.drop_down' ).hide();
			
		t.parent().children('ul').css('left', 'auto');
		t.parent().children('ul').addClass('drop_down');		
		//t.parent().children('.drop_down').show();
		if( t.parent().children( '.drop_down' ).is( ':visible' ) ) {
			t.parent().children('.drop_down').hide();
			t.css('background-image', 'url(http://ourclark.com/wp-content/themes/clark/images/arrow.png)');
			t.removeClass( 'close-me' );
		} else {
			t.parent().children('.drop_down').show();
			t.addClass( 'close-me' );
			
		}
		
		if( !( t.parent().children('.absolute_arrow').size() > 0 ) ) t.parent().append('<a class="absolute_arrow" href="#" onclick="if( $(this).parent().children(\'.drop_down\').is(\':visible\') ) { $(this).parent().children(\'.drop_down\').hide(); $(this).parent().children(\'a:first\').css(\'background-image\', \'url(http://ourclark.com/wp-content/themes/clark/images/arrow.png)\'); } else { $(this).parent().children(\'.drop_down\').show(); $(this).parent().children(\'a:first\').css(\'background-image\', \'url(http://ourclark.com/wp-content/themes/clark/images/arrow_down.png)\'); } return false;"></a>');
		return false;
	});
	
});
