$(document).ready(function(){
	
	
			$('.f-news-wrap .f-news:last-child, .ql-feature p a:last-child').addClass('last');
			
			
			//nav slide down
			$('#nav li ul').hide();
			$('#nav li').hover(function(){
				$(this).find('ul').slideDown('fast'); 
			},function(){
				$(this).find('ul').hide();
			}); 
			
			//small tooltip page and body
			smtooltip();	
			
			//home popup tooltip
			$('.fl-open').each(function(){
					$(this).tooltip({ effect: 'slide' });  		
			});
			
			//article filter
			$('#articleLists').change(function(){
				if(this.selectedIndex == 1) window.location = '/mcms_page_articlelist_sort.php?groupby=series';
				if(this.selectedIndex == 2) window.location = '/mcms_page_articlelist_sort.php?groupby=category';
				if(this.selectedIndex == 3) window.location = '/mcms_page_articlelist_sort.php?groupby=month';
				if(this.selectedIndex == 4) window.location = '/mcms_page_articlelist_sort.php?groupby=author';		
			});
			
			$('#login .thickbox, #comments .thickbox').colorbox({iframe:true,width:400, height:250});
			$('#footer .thickbox').colorbox();
			$('#content .slideshow, #content .thickbox').colorbox({
				slideshow:true,
				photo:true,
				preloading:true,
				slideshowSpeed:5000,
				slideshowAuto:false
				}); 
				
			$('.rsvp .thickbox').colorbox({iframe:true,width:450, height:570});
			$('#options .thickbox,.section .thickbox').colorbox({iframe:true,width:500, height:570});

});

