jQuery.noConflict();

jQuery(document).ready(function(){
								
/*----popup окно в талице ----*/
/*
 * UPD: 2009-06-24, Alena
 * now popup window on /projects page is openned by clicking on employer name
 * code for this is in /js/jquery.my.custom.js
 */    
/*
jQuery('.td2div > b').hover(
function()
{
	var el=jQuery(this).parent().parent().find("div").eq(2);
	if(jQuery(el).is("div"))
	{
	jQuery(el).show(400);
	}
	
	
},
function()
{
	var el=jQuery(this).parent().parent().find("div").eq(2);
	if(jQuery(el).is("div"))
	{
	jQuery(el).hide(400);
	}
	
});
*/
});
