$(document).ready(function () {

    $('.toggle').hide();
    $('.active+div').show();
    //Switch the 'Open' and 'Close' state per click then slide up/down (depending on open/close state)
    $('.trigger').click(function () {
        $(this).toggleClass('active').next().slideToggle('normal');
        return false; //Prevent the browser jump to the link anchor
    });

    //	$('.message-error').hide(); 
    //	$("#signinForm").submit(function() {
    //      if ( $("#user").val() != "Gebruikersnaam" && $("#user").val() != "" && $("#pass").val() != "Wachtwoord" && $("#pass").val() != "")  {
    //          	return true;
    //      }           
    //    $('.message-error').fadeIn(1000); 
    //      	return false;
    //	 });

    //Form-profile validatie begin 
    $("#error").hide();
    $(".errorOnder").hide();
    //Form-profile validatie eind

    $('table tr:odd').addClass('alt');
    
    //Assign the ColorBox event to elements
    $(".click").colorbox({width:"50%", inline:true, href:"#box"});
    $(".equalize1").colorbox({width:"80%", inline:true, href:"#equalizer1"});
    $(".equalize2").colorbox({width:"80%", inline:true, href:"#equalizer2"});
    $(".equalize3").colorbox({width:"80%", inline:true, href:"#equalizer3"});
    $(".equalize4").colorbox({width:"80%", inline:true, href:"#equalizer4"});

    $('input[placeholder], textarea[placeholder]').placeholder();
});

function showColorBox(categoryId) {
    $(".click").colorbox({ width: "50%", inline: true, href: "#box-" + categoryId });
}
