﻿$(document).ready(function() {
    $("#search_content").focus(function() {
        if ($(this).val() == 'Find a training') $(this).val('');
    });
    $("#search_content").focus(function() {
        if ($(this).val() == 'Trouver une formation') $(this).val('');
    });
    $("#search_content").focus(function() {
        if ($(this).val() == 'Vind een opleiding') $(this).val('');
    });
    $("#search_content").blur(function() {
        if ($(this).val() == '') $(this).val('Find a training');
    });

    $("#email_newsletter").focus(function() {
        if ($(this).val() == 'Enter your e-mail') $(this).val('');
    });
    $("#email_newsletter").focus(function() {
        if ($(this).val() == 'Entrez votre email') $(this).val('');
    });
    $("#email_newsletter").focus(function() {
        if ($(this).val() == 'Voer uw e-mail in') $(this).val('');
    });
    $("#email_newsletter").blur(function() {
        if ($(this).val() == '') $(this).val('Enter your e-mail');
    });
});

// Modification quantité panier
function modifyQuantity(id)
{
    $("#form").attr("action",$("#form").attr("action").replace("Cart","ModifyQuantity/") + id);
    $("#form").submit();
}
