// set jQuery to the compatibity mode, so there should not be any problems with other libarys
jQuery.noConflict();
//var $j = jQuery.noConflict();

//jQuery(document).ready(function($){
jQuery(document).ready(function(){

	// hide all text in the company management text-pic element
	jQuery('.cm-element .cm-text').hide();

	// on image hover
	jQuery('.cm-element').mouseover(function(event){
		jQuery(this).find('.cm-image').hide(); 
		jQuery(this).find('.cm-text').show();
	});

	// on image mouse out
	jQuery(".cm-element").mouseout(function(event){
		jQuery(this).find('.cm-image').show(); 
		jQuery(this).find('.cm-text').hide();
 
	});
});
