﻿/// <reference path="../Resource/scripts/jquery-1.3.2.min-vsdoc.js" />
$(document).ready(function() {
    $('#ProductList > ul > li > h2').click(function() {
        $('#ProductList > ul > li > span').removeClass('hover');
        $(this).next().addClass('hover');
    });
})
