﻿$(document).ready(function() {
   $(".exampleCallBack").colorbox({ width: "350", height: "450", iframe: true });
});

$(document).ready(function() {
    $(':text').focus(function() {
        $(this).addClass('input_selected');
    });
    $(':text').blur(function() {
        $(this).removeClass('input_selected');
    });
    $(':password').focus(function() {
        $(this).addClass('input_selected');
    });
    $(':password').blur(function() {
        $(this).removeClass('input_selected');
    });
});

$(document).ready(function () {
    //$(".accordion2 h3").eq(2).addClass("active");
    //$(".accordion2 p").eq(2).show();

    $(".accordion2 h3").click(function () {
        $(this).next("p").slideToggle("slow").siblings("p:visible").slideUp("slow");
        $(this).toggleClass("active");
        $(this).siblings("h3").removeClass("active");
    });

    $("#table td").mouseover(function () {
        $(this).toggleClass("row");
    }).mouseout(function () { $(this).removeClass('rowSelected'); })

    $(".example6").colorbox({ width: "700", height: "900", iframe: true });

    $(".menuItem").mouseover(function () {
        $(this).addClass('menuItem_selected');
    });
    $(".menuItem").mouseout(function () {
        $(this).removeClass("menuItem_selected");
    });

    $(".menuItemOne").mouseover(function () {
        $(this).addClass("menuItem_selectedOne");
    });
    $(".menuItemOne").mouseout(function () {
        $(this).removeClass("menuItem_selectedOne");
    });


    $(".menuItemPendrive").mouseover(function () {
        $(this).addClass("menuItem_selectedPendrive");
    });
    $(".menuItemPendrive").mouseout(function () {
        $(this).removeClass("menuItem_selectedPendrive");
    });

    $(".menuItemPaperBag").mouseover(function () {
        $(this).addClass("menuItem_selectedPaperBag");
    });
    $(".menuItemPaperBag").mouseout(function () {
        $(this).removeClass("menuItem_selectedPaperBag");
    });

    $(".menuItemUnique").mouseover(function () {
        $(this).addClass("menuItem_selectedUnique");
    });
    $(".menuItemUnique").mouseout(function () {
        $(this).removeClass("menuItem_selectedUnique");
    });
});

$(document).ready(function() {
    $('.tableButtonDark').mouseover(function() {
        $(this).addClass('tableButtonDarkSelected');
    });
    $('.tableButtonDark').mouseout(function() {
        $(this).removeClass('tableButtonDarkSelected');
    });
});

$(document).ready(function() {
    $('.informationListItem').mouseover(function() {
        $(this).addClass('informationListItem_selected');
    });
    $('.informationListItem').mouseout(function() {
        $(this).removeClass('informationListItem_selected');
    });
});

function ChangeProductImage(imageControl, imageUrl) {
    var imgControl = document.getElementById(imageControl);
    if (imgControl != null) {
        imgControl.src = imageUrl;
    }
}
