/* On load */
$(document).ready( function() {
	
	/* Remove text */
	$('.removeText').text('');
	
	/* Clear textboxes */
	$('input[type="text"].clear,input[type="password"].clear').focus( function() {
		if( $(this).val() == $(this).attr('alt') ) {
			$(this).val('');
			$(this).removeClass('default');
		}
	} ).blur( function() {
		if( $(this).val() == '' ) {
			$(this).val($(this).attr('alt'));
			$(this).addClass('default');
		}
	} );
	
	/* Categories */
	$('ul.categories>li>a').click( function() {
		if( $(this).parent().hasClass('active') == false ) {
			$('ul.categories li ul').stop( true, true ).slideUp( 250 ).parent().removeClass('active');
			$(this).parent().find('ul').stop( true ).slideDown( 500 );
			$(this).parent().addClass('active');
		}
		return( false );
	} );

} );
