$(function() {
     $('.help').live('click',function() {
        var dialogId = "#" + $(this).attr('rel');
        $(dialogId).dialog({
           width: 650,
           resizable: false,
           close: function() { $(this).dialog( 'destroy' );}
	    });
		return false;
	});

    $('#category-list > ul > li').hover(function() {
        var submenu = $(this);
        if($(submenu).size() > 0)
        {
			var position = Math.floor(($(this).children("div.categories-level-2").height() - 20) / 2);
			$(this).children("div.categories-level-2").css({ top: -position });
            $(this).children("div.categories-level-2").show();
        }
    }, function() {
        $(this).children("div.categories-level-2").hide();
    });

    //$('#productImage a').lightBox();
    //$('#enlargeImage a').lightBox();

    $('.thumbnails a').click(function(){
        $("#mainImage").attr('src', $(this).attr('href'));
        $('#productImage a').attr('href', $(this).attr('rel'));
        $('#enlarge a').attr('href', $(this).attr('rel'));
        return false;
    });

});

