﻿$(document).ready(function () {
    //Add fancybox wrappers
    $("a#contactLink").fancybox({
        'width': 758,
        'height': 465,
        'autoScale': true,
        'overlayShow': true,
        'transitionIn': 'elastic',
        'transitionOut': 'fade',
        'type': 'iframe'
    });

    $("a#e5a1dcbef_150_153_lnkbutton").fancybox({
        'width': 758,
        'height': 465,
        'autoScale': true,
        'overlayShow': true,
        'transitionIn': 'elastic',
        'transitionOut': 'fade',
        'type': 'iframe',
        'titleShow': false
    });

    //Add event handler to product group drop-downs
    $("ul.navWrapper li select").click(function () {
        redirProd(this);
    })

    //Remove horizontal line from last product item
    $("ul.navWrapper li:last-child").css("border", "none");

    //Add Id Tag to Last List Item
    $("ul#e5a1dcbef_150_152_submenu_items li:last-child").attr("id", "remBar");
});

//Generic Popup Window
function popupWin(url, width, height) {
    newwindow = window.open(url, 'name', 'height=' + height + ',width=' + width + ', scrollbars=yes');
    if (window.focus) { newwindow.focus() }
    return false;
}

//Product Redirect Script
function redirProd(obj) {
    var currValue = obj.options[obj.selectedIndex].value;
    if (currValue != '0') {
        window.location.href = 'proddetail.aspx?id=' + currValue;
    }
}
