jQuery(document).ready(function() {
	
	jQuery('.art_photos').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '200px' }); 
	
	jQuery('.art_thumb').click(function() {
		  
		  new_src = jQuery(this).attr('src');
		  
		  my_id = jQuery(this).attr('id');
		  my_id = my_id.replace('th_','');
		  
		  
		  par1 = jQuery(this).parent();
		  jQuery(par1).find('.art_photos li').hide();
		  jQuery(par1).find('.art_photos li#li_'+my_id).show();
		  		  
	});
	
	 
	
	jQuery('input[title!=""]').hint();
	
	jQuery("a.article").fancybox(
			{
				'easingIn'				: 'easeOutBack',
				'easingOut'				: 'easeInBack',
				'hideOnContentClick'	: false

			}
	);
	
	jQuery(function() {
		jQuery("#tree").treeview({
			collapsed: true,
			animated: "medium",
			control:"#sidetreecontrol"			
		});
	});
	

	jQuery('a.sub_with_sub').click(function(){
		return false;
	});


});


	

