$(document).ready(function(){
    var items = $('#username,#password,#gsm_username,#gsm_password,#side_search,#cname');

    items.focus(function() { 
        if($(this).attr('rel')==null) {
            $(this).attr('rel',$(this).attr('class'));
        }
        $(this).removeClass($(this).attr('class'));     
    });

    items.blur(function(){
        if($(this).val()=='') { 
            $(this).addClass($(this).attr('rel')); 
        }       
    });
});

$(document).ready(function(){
    $('#breadcrumb a:last-child').css('color','#000'); 
});


// SHA1
$(document).ready(function(){
    var $_forms = $('form.sha1');
    $_forms.submit(function(obj){
        var password = $(obj.currentTarget.password);
        password.val($.sha1(password.val()));
        return true;
    }); 
});

// INSCHRIJVEN VOOR IETS
$(document).ready(function(){
	var register = $('a.register');
	
	if(register.size() > 0) {
    register.fancybox({
        'zoomSpeedIn': 300, 
        'zoomSpeedOut': 300, 
        'overlayShow': true,
        'hideOnContentClick': false,
        'frameHeight' : 400,
        'frameWidth' : 400  
    });  
	}
})
