$.metadata.setType("attr", "validate");
	
setTimeout(function(){ $('.fadeout').fadeOut('slow'); }, 4000);

var ajax_load = '<img src="' + getPathToRoot() + 'images/loading_small.gif" alt="" />';

$(document).ready(

	function() {
	
		$('.tooltip').qtip(
			{
			style: { name: 'cream', border: { width: 1, radius: 4 } },
			position : { corner: { target: 'bottomRight', tooltip: 'topLeft' } }
			}
		);
		
		$('#profile_questions').validate();
		$('#deposit_form').validate();
		$('#new_message_form').validate();
		$('#lost_password_form').validate();
		
		$('.hilite').highlightFade();
		$('.badge_fade').highlightFade('white');
		
		$('#slides').cycle({ 
			delay:  2000, 
			speed:  500,
			pause:	1
		});
		
		$('#live_search_form input[name="q"]').liveSearch({url: getPathToRoot() + 'inc/ajax/search.php?q='});
		
		// flag message Ajax call
		$('#flag_message a').click(function() {
    		$("#flag_message").html(ajax_load);
    		$.get(getPathToRoot() + 'inc/ajax/flag_message.php', {hash: $('#message_hash').attr('value')},  
            	function(responseText){  
                	$("#flag_message").html(responseText);  
            	},
            	"html"  
        	); 
        	$('#flag_message').addClass('fadeout');
		});  
		
	}
	
);