﻿$(document).ready(function () {
    $('#scrollme').show().coinslider({
        width: 530,
        height: 209,
        effect: 'straight',
        navigation: false,
        delay: 5000,
        hoverPause: true,
        links: true
    });

    $('#loginform #register select[name$=ddlCountry]').change(countryCheck);
    $('#addressentry select[name$=ddlCountry]').change(countryCheck);

    $('#genussearch select').change(function () {
        window.location = $(this).find("option:selected").val();
    });
});

function countryCheck() {
    if ($(this).val() == 'IE')
        $('input[name$=txtPostcode]').val('None').parents('tr').hide();
    else
        $('input[name$=txtPostcode]').parents('tr').show();
}
