
		// initialise plugins
	    jQuery(document).ready(function() { 
		// Preload all rollovers
		jQuery(".content_staff a").children(".slideimg_on").fadeTo(0, 0);

		jQuery(".content_staff a").mouseover(function(){
			jQuery(this).children(".slideimg").fadeTo(500, 0);
			jQuery(this).children(".slideimg_on").fadeTo(500, 1);
			
		});
		jQuery(".content_staff a").mouseout(function(){
			jQuery(this).children(".slideimg").stop().fadeTo(500, 1);
			jQuery(this).children(".slideimg_on").stop().fadeTo(500, 0);
	
			
		});
	
		
		
   

    }); 
    
    
    /*Tooltip*/
jQuery(document).ready(function(){
	jQuery("ul.content_staff a").simpletooltip();
});
jQuery(document).ready(function(){
	jQuery("div.content_staff a").simpletooltip();
});


	// 2 Columns Rich text template

$(function(){
			//$('.col').columnize({width:400, lastNeverTallest: true });
			$('.col').columnize({columns: '2', lastNeverTallest: 'true' });
		});



 


	
