/**
 * @package Antikhaus.cz
 */

var jQ = jQuery.noConflict();

jQ(document).ready(function() {
	// Pridani tridy .last poslednimu prvku v horizontalnim menu
	jQ("#menu table td:last").addClass("last");

	jQ('#menu table td a').each(function() {
       if(window.location.pathname + window.location.search == jQ(this).attr('href')) {
           jQ(this).parent().addClass('active');
       }
    });

	// hover na prehledu produktu
	/*jQ('#products div').mouseover(function() {
		jQ(this).css('background-position', '-260px 0');
	});

	jQ('#products div').mouseout(function() {
		jQ(this).css('background-position', '0 0');
	});*/

	// hover boxy na strance referenci
	jQ('div.refInfo').hide();

	// seznam s dalsimi obrazky galerii
	jQ('ul.refGallery').hide();

	jQ(document).mousemove(function(e){
      jQ('#refInfoPopUp').css({top:e.pageY+15,left:e.pageX+15});
	});

	jQ('div.ref h3').mouseover(function() {
		var content = jQ(this).siblings('div.refInfo').html();
		jQ(this).after('<div id="refInfoPopUp">' + content + '</div>');
	});

	jQ('div.ref').mouseout(function() {
		jQ('#refInfoPopUp').hide().remove();
	});

})


