$(document).ready(function () {

	$('#main-products li').hover(
		function () {
			$(this).addClass('hover');
		},
		function () {
			$(this).removeClass('hover');
		}
	).click(function () {
		window.location = $('a', this).attr('href');
	});
	
	// initialize tooltip
	$('#tblBuy a').tooltip({
		bodyHandler: function() {
			return $($(this).attr("href")).html();},
		showURL: false, 
		positionRight: true
	});

});
