$(document).ready( function( ){

	$('.item-content').hide( );
	$('a.item').click(function(){
		$(this).next( ).toggle( );
		return false;
	});
	
	$("#form-tips").submit(function(){
		var fields = {};
//		console.log( $("#form-tips").children( ) );

		$("#form-tips input").each(function(){
			if( typeof $(this).attr( "name" ) != 'undefined' )
			{
				fields[$(this).attr( "name" )] = $(this).val( );
			}
		});
		$("#form-tips select").each(function(){
			if( typeof $(this).attr( "name" ) != 'undefined' )
			{
				fields[$(this).attr( "name" )] = $(this).val( );
			}
		});
		$("#form-tips textarea").each(function(){
			if( typeof $(this).attr( "name" ) != 'undefined' )
			{
				fields[$(this).attr( "name" )] = $(this).val( );
			}
		});
		
		
//		console.log( fields );
		$.post( $("#form-tips").attr( "action" ),
		  fields,
		  function(msg){
//		  	console.log( msg );
		  	$.blockUI({ message: msg }); 
		  	setTimeout( function(){ $.unblockUI();  }, 1500 );
		  }
		);
		return false;
	});
});