$(document).ready(function() {
	
	$('a.ajax-load').click(function (e) {
		e.preventDefault();
		var u = $(this).attr('href').split("/");
		$('#message').load("mods/"+u[0]+".php?id="+$(this).attr('rel'));
		$('#message').modal();
	});
	
	$('.open-form').click(function(e) {
		togglehidden();
		$($(this).attr('rel')).show('slow');
		return true;
	 });
	
	togglehidden();
	 
	 $('a.hide-parent').click(function(e) {
		e.preventDefault();
		$($(this).parent()).hide('slow');
		return false;
	 });
	 
	 $('.message-form').bind('submit', function() {
        $(this).ajaxSubmit({
            target:  $($(this).parent())
        });
        return false; // <-- important!
    });
	 
	 
});

function togglehidden(){

	$('.hidden').hide()

}