/*
* jQuery Ready 
* functionality to execute when page is loaded.
*/
$(document).ready(function(){   
    $('.rightMenuItem').click(function(){
		$('.rightMenuItem').removeClass('opened');
		$(this).addClass('opened');
		$(this).next('.rightMenuSub').slideToggle();
		$('.rightMenuItem:not(.opened)').next('.rightMenuSub').slideUp();
    });
	
	var interval;
	
	
  $("#newsFitlerYear").change(function(){
	$("#filterForm").submit();
  });
  
  $("#newsFitlerMonth").change(function(){
	$("#filterForm").submit();
  });
});





/*
* Basic Functions
*
*/

function getQueryString() {
	var url = window.location.href;
	var queryString;
	queryString = url.substring(url.indexOf('?'),url.length);
	return queryString;
}
