// najpierw eventy la mysza
// onMouseOver="thumb_over(this)" onMouseOut="thumb_out(this)"
// <script type="text/javascript" src="js/mouse_events.js">/script>

function thumb_over(e) {
	e.style.backgroundColor='#D9E4E6';
	// ie
	e.style.cursor='hand';
	// ff
	e.style.cursor='pointer'
}

function thumb_out(e) {
	e.style.backgroundColor='#fff'
}


// sprobojemy tu hitny jeszcze dodac
// <script language="javascript" src="tigra_hints/compressed/tigra_hints.js">/script>
// onMouseOver="myHint.show(0, this)" onMouseOut="myHint.hide()"

var HINTS_CFG = {
	'wise'       : true,
	'margin'     : 10,
	'gap'        : 0,
	'align'      : 'tcbc',
	'css'        : 'hintsClass',
	'show_delay' : 10,
	'hide_delay' : 50,
	'follow'     : false,
	'z-index'    : 100,
	'IEfix'      : false,
	'IEtrans'    : ['blendTrans(DURATION=.3)', 'blendTrans(DURATION=.3)'],
	'opacity'    : 0 // opacity of the hint in %%
};
// text/HTML of the hints
var HINTS_ITEMS = [
	'pokaż profil',
	'wyślij wiadomość',
	'zaproś do znajomych',
	'dołącz do firmy',
	'usuń ze znajomych',
	'usuń z firmy'
];

var myHint = new THints (HINTS_ITEMS, HINTS_CFG);