	$(document).ready(function(){  
		// fadeout flash messages on click  
		$('.cancel').click(function(){  
			 $(this).parent().fadeOut();  
			 return false;  
		});  
	
		 // fade out good flash messages after 3 seconds  
		 $('.flash_good').animate({opacity: 1.0}, 3000).fadeOut();
		 
		 jQuery('.side_nav_menu').hover(
			function() { $('div', this).css('display', 'block'); },
			function() { $('div', this).css('display', 'none'); }
		 );
	
		 jQuery('div.sub_menu').hide();
	});
	
	function tags_div(checkbox)
	{
	    label = checkbox.parentNode;

	    if (checkbox.checked)
		{
			label.style.backgroundColor='#0a246a';
			label.style.color='#fff';
		}
		else
		{
			label.style.backgroundColor='#fff';
			label.style.color='#000';
		}
	}
	
	$(document).ready(function() {
		jQuery("li.dropdown").each(function() { 
			jQuery(this).hover(
				function() { $('ul', this).css('display', 'block'); },
				function() { $('ul', this).css('display', 'none'); }
			);
		});
	 });
	
	
	