
// This is for the tool tips
jQuery(document).ready(function(){
	jQuery(".item-image").each(function(){
			item_name=jQuery(this).attr("rel");
			jQuery(this).attr("src", "siteimagesen/"+item_name+".gif");
	});

	jQuery(".item-image").hover(
	
		function(){
			item_name=jQuery(this).attr("rel");
			jQuery(this).attr("src", "siteimagesen/"+item_name+"h.gif");
		},
		function(){
			item_name=jQuery(this).attr("rel");
			jQuery(this).attr("src", "siteimagesen/"+item_name+".gif");
		}
		
	);
    jQuery(".linkedItem").hover(
		function(){
			item_name=jQuery(this).attr("rel");
			ajaxPath="index.php?open=tooltips div#"+item_name;
			
			jQuery(this).bt(
				{
					fill: "#ffffff",
					shadow: false,
					shadowOffsetX: 3,
					shadowOffsetY: 3,
					shadowBlur: 8,
					shadowColor: '#ffffff',
					positions: ['left', 'right', 'bottom'],
					trigger: 'none',
					ajaxPath: ajaxPath
				}
				
			);
			jQuery(this).btOn();

			//alert(ajaxPath);
		},
		function(){
			item_name=jQuery(this).attr("rel");
			jQuery(this).btOff();
		}
	);


    jQuery(".linkedItem").click(function(){
		item_name=jQuery(this).attr("rel");
		// alert("I must handle the action for " +item_name);
		self.location="/index.php?open=startpega&item="+item_name;

	});
		
});


