
$(document).ready(function() {
	//Drop Down Menu
	$('#head .menu li:has(.sub)').hover(function() {
		$('a:first', this).addClass('active');
		$('.sub', this).show();
	}, function() {
		$('a:first', this).removeClass('active');
		$('.sub', this).hide();
	});


	if(jQuery().datepicker) {
		$('.datepicker').datepicker({ dateFormat:'yy-mm-dd' });
	}
	
	//News Widget - autoscroll
	var latest_height = $('.newsitems').height();
	if(latest_height>180) {
		$('.articles').scrollable({ vertical:true, circular:true, easing:'linear' }).autoscroll({ autoplay:true, interval:7500 });
	}
	$('.more').click(function() {
		var id = $(this).attr('id').substring(5);
		$('#short-' + id).hide();
		$('#long-' + id).show();
	});
	$('.less').click(function() {
		var id = $(this).attr('id').substring(5);
		$('#short-' + id).show();
		$('#long-' + id).hide();
	});
	$('.viewer').click(function() {
		var jquery_this = $(this);
		var id = jquery_this.attr('id');
		$('.viewer').removeClass('active');
		if (id == 'all') {
			$('.newsitem:hidden', ".content").show();
		} else {
			$('.newsitem', ".content").hide().filter('.' + id).show();
		}
		jquery_this.addClass('active');
	});
});
