$(document).ready(function()
{
	$("a[rel='lightbox']").colorbox();
    $('.innerfade').innerfade({ 
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'sequence'
	});
    
     $('.hasSubmenu').mouseover(function()
    {
        $(this).children('ul').show();
    });
    $('.hasSubmenu').mouseout(function()
    {
        $(this).children('ul').hide();
    });
    
    $('.uitschuif').click(function()
    {
        $alt = $(this).children('img').attr('alt');
        
        if ($alt == 'inklappen')
        {
            $(this).children('img').attr('alt', 'uitklappen');
            $(this).children('img').attr('src', 'images/plus.png');
            $(this).next('div').slideUp();
        }
        else
        {
            $(this).children('img').attr('alt', 'inklappen');
            $(this).children('img').attr('src', 'images/min.png');
            $(this).next('div').slideDown();
        }
    });
    
    $('.empty').focus(function()
    {
        if ($(this).val() == this.defaultValue)
        {
            $(this).val('');
        }
    });

});
