﻿$(function () {
    $('#browseForStore').click(function () {
        location.href = '/Store/Browse';
    });
    $('#storeLogin').click(function () {
        location.href = '/Account/Login?SendTo=/Store/Go';
    });
    $('#storeRegister').click(function () {
        location.href = '/Account/Register?SendTo=/Store/Go';
    });
    $('form#findSchoolStore').submit(function () {
        var iid = $(this).find('input[name="Institution.Id"]').val();
        if (iid) {
            location.href = '/Store?iid=' + iid;
            return false;
        }
        return true;
    });
    $('div#lowerArea div.item').mouseover(function () {
        $(this).siblings().find('img').animate({ height: '0px' }, { queue: false, duration: 500 });
        $(this).find('img').animate({ height: '180px' }, { queue: false, duration: 500 });
    });
    $('table.instLkpItems td').live('click', function () {
        location.href = "/Store?iid=" + $(this).parents('tr:first').attr('data-id');
    });
});
